Skip to content

Commit

Permalink
Temporarily fixed home not redirecting to /fishes
Browse files Browse the repository at this point in the history
  • Loading branch information
codeaid committed May 27, 2024
1 parent cd6efe2 commit 44f4198
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import type { Metadata } from 'next';
import { redirect } from 'next/navigation';

export const metadata: Metadata = {
title: 'Home - TackleBox',
};

const HomePage = () => null;
const HomePage = () => redirect('/fishes');

export default HomePage;

0 comments on commit 44f4198

Please sign in to comment.