Merge branch 'dev' into analytics

This commit is contained in:
Mike Cao 2023-12-20 22:47:23 -08:00
commit f11cd0ba17
2 changed files with 2 additions and 0 deletions

View File

@ -72,6 +72,7 @@ export function NavBar() {
key={url}
href={url}
className={classNames({ [styles.selected]: pathname.startsWith(url) })}
prefetch={url !== '/settings'}
>
<Text>{label}</Text>
</Link>

View File

@ -1,3 +1,4 @@
'use client';
import { ErrorInfo, ReactNode } from 'react';
import { ErrorBoundary as Boundary } from 'react-error-boundary';
import { Button } from 'react-basics';