Skip to content

Commit c5f7ac3

Browse files
committed
docs: minor fixes
1 parent 420cd5f commit c5f7ac3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

apps/docs/app/routes/studio/$.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ export const Route = createFileRoute('/studio/$')({
99
links: [{ rel: 'stylesheet', href: cssLink }],
1010
}),
1111
component: () => <Studio config={sanityConfig} />,
12+
// Disable SSR for this route, as the studio is not meant to be rendered on the server
13+
ssr: false,
1214
});

apps/docs/app/ui/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function Footer() {
99
<footer className="mt-8 border-t border-t-gray-light">
1010
<div className="grid grid-flow-col py-8">
1111
<div className="flex flex-col justify-between">
12-
<Link href="/" aria-label="Gå til forsiden">
12+
<Link to="/" aria-label="Gå til forsiden">
1313
<img src={logoUrl} alt="" className="max-w-32" />
1414
</Link>
1515
<p className="flex">© {currentYear} OBOS</p>

0 commit comments

Comments
 (0)