We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bde536 commit b14cb1cCopy full SHA for b14cb1c
src/spa.ts
@@ -3,7 +3,6 @@ import { start } from "./start";
3
import type { RegisterLink, RegisteredLinkProps } from "./link";
4
import { setLink } from "./link";
5
import type { ColorScheme } from "./useIsDark";
6
-import { isBrowser } from "./tools/isBrowser";
7
8
export type { RegisterLink, RegisteredLinkProps };
9
@@ -20,11 +19,9 @@ export function startReactDsfr(params: {
20
19
setLink({ Link });
21
}
22
23
- if (isBrowser) {
24
- start({
25
- defaultColorScheme,
26
- verbose,
27
- "nextParams": undefined
28
- });
29
- }
+ start({
+ defaultColorScheme,
+ verbose,
+ "nextParams": undefined
+ });
30
0 commit comments