aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-framework-next/client.development.tsx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--packages/bun-framework-next/client.development.tsx10
1 files changed, 6 insertions, 4 deletions
diff --git a/packages/bun-framework-next/client.development.tsx b/packages/bun-framework-next/client.development.tsx
index 187a91e71..29774d1b5 100644
--- a/packages/bun-framework-next/client.development.tsx
+++ b/packages/bun-framework-next/client.development.tsx
@@ -52,8 +52,6 @@ import {
export const emitter: MittEmitter<string> = mitt();
-const App = NextApp;
-
declare global {
interface Window {
/* test fns */
@@ -293,6 +291,7 @@ export async function _boot(EntryPointNamespace, isError) {
// Construct signature return types 'App<any, any, any>' and 'Component<AppProps, any, any>' are incompatible.
// @ts-expect-error
CachedApp = NextApp;
+ CachedComponent = PageComponent;
if (appScripts && appScripts.length > 0) {
let appSrc;
@@ -329,9 +328,12 @@ export async function _boot(EntryPointNamespace, isError) {
return render(
Object.assign<
{},
- Omit<RenderRouteInfo, "App" | "scroll">,
- Pick<RenderRouteInfo, "App" | "scroll">
+ Omit<RenderRouteInfo, "App" | "scroll" | "Component">,
+ Pick<RenderRouteInfo, "App" | "scroll" | "Component">
>({}, info, {
+ // If we don't have an info.Component, we may be shallow routing,
+ // fallback to current entry point
+ Component: info.Component || CachedComponent,
App,
scroll,
})