Skip to content

Commit f82d6ad

Browse files
let -> const
Co-authored-by: stevensJourney <51082125+stevensJourney@users.noreply.github.com>
1 parent ddf48a0 commit f82d6ad

File tree

1 file changed

+1
-1
lines changed
  • demos/react-supabase-todolist/src/app

1 file changed

+1
-1
lines changed

demos/react-supabase-todolist/src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export type LoginFormParams = {
1616
*/
1717
export default function EntryPage() {
1818
const connector = useSupabase();
19-
let navigate = useNavigate();
19+
const navigate = useNavigate();
2020

2121
const navigateToMainView = () => {
2222
if (connector?.currentSession) {

0 commit comments

Comments
 (0)