Skip to content

Commit 85b51fe

Browse files
committed
don't use extension for dynamic imports
1 parent 4bcc3f0 commit 85b51fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/start/src/shared/dev-overlay

packages/start/src/shared/dev-overlay/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export interface DevOverlayProps {
1717

1818
const DevOverlayDialog = import.meta.env.PROD
1919
? () => <></>
20-
: clientOnly(() => import("./DevOverlayDialog.tsx"), { lazy: true });
20+
: clientOnly(() => import("./DevOverlayDialog"), { lazy: true });
2121

2222
export function DevOverlay(props: DevOverlayProps): JSX.Element {
2323
const [errors, setErrors] = createSignal<unknown[]>([]);

0 commit comments

Comments
 (0)