Skip to content

Commit

Permalink
fix: use NextPage type for Notification page
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Dec 17, 2023
1 parent ab0eae4 commit 0eb9b2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/Notification/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { FC } from 'react';
import type { NextPage } from 'next';

import MetaTags from '@components/Common/MetaTags';
import NotLoggedIn from '@components/Shared/NotLoggedIn';
Expand All @@ -14,7 +14,7 @@ import FeedType from './FeedType';
import List from './List';
import Settings from './Settings';

const Notification: FC = () => {
const Notification: NextPage = () => {
const {
query: { type }
} = useRouter();
Expand Down

0 comments on commit 0eb9b2a

Please sign in to comment.