Skip to content

Commit f74b2dc

Browse files
committed
chore: format
1 parent 9ceef94 commit f74b2dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vike-solid/hooks/useConfig/useConfig-client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ function useConfig(): (config: ConfigFromHook) => void {
1212
let pageContext = getPageContext() as PageContext & PageContextInternal;
1313

1414
// Component
15-
if (!pageContext) pageContext = usePageContext() as PageContext & PageContextInternal;;
15+
if (!pageContext) pageContext = usePageContext() as PageContext & PageContextInternal;
1616
return (config: ConfigFromHook) => {
1717
if (!("_headAlreadySet" in pageContext)) {
1818
setPageContextConfigFromHook(config, pageContext);
1919
} else {
20-
if (typeof window !== 'undefined') applyHead(config);
20+
if (typeof window !== "undefined") applyHead(config);
2121
}
2222
};
2323
}

0 commit comments

Comments
 (0)