Skip to content

Commit 36fae8a

Browse files
committed
fix linting
closes #79
1 parent 610be33 commit 36fae8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/app/routes/_index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ export default function Home({ loaderData }: Route.ComponentProps) {
2222
>
2323
{loggedIn ? "Go to Dashboard" : "Login"}
2424
</Button>
25-
{ !loggedIn &&
25+
{!loggedIn && (
2626
<Text ta="center" size="sm" mt="sm">
2727
New here?{" "}
2828
<Text component="a" href="/signup" c="blue">
2929
Sign up
3030
</Text>
3131
</Text>
32-
}
32+
)}
3333
</Center>
3434
);
3535
}

0 commit comments

Comments
 (0)