diff --git a/app/components/Header.tsx b/app/components/Header.tsx
index e166c7f..97f108e 100644
--- a/app/components/Header.tsx
+++ b/app/components/Header.tsx
@@ -42,8 +42,6 @@ function TabLink({ name, to, icon }: TabLinkProps) {
return (
cn(
'px-3 py-2 flex items-center rounded-md text-nowrap gap-x-2.5',
@@ -54,6 +52,8 @@ function TabLink({ name, to, icon }: TabLinkProps) {
isActive ? 'after:visible' : 'after:invisible',
)
}
+ prefetch="intent"
+ to={to}
>
{icon} {name}
@@ -64,13 +64,13 @@ function TabLink({ name, to, icon }: TabLinkProps) {
function Link({ href, text }: LinkProps) {
return (
{text}
@@ -101,20 +101,21 @@ export default function Header(data: Props) {
{data.user ? (