diff --git a/src/pages/not-found.tsx b/src/pages/not-found.tsx
deleted file mode 100644
index bb7eba4..0000000
--- a/src/pages/not-found.tsx
+++ /dev/null
@@ -1,68 +0,0 @@
-import Image from 'next/image';
-import { useRouter } from 'next/router';
-
-import notFounded from '../assets/svg/404.svg';
-import tcLogo from '../assets/svg/tc-logo.svg';
-import TcButton from '../components/shared/TcButton';
-
-const NotFound = () => {
- const router = useRouter();
-
- return (
-
-
-
-
-
-
-
-
-
-
- Oops! We’re sorry, we couldn’t find
the page you’re looking
- for.
-
-
-
What could have caused this?
-
-
- The link you clicked might be old and does not work anymore.
-
-
- Or you might have accidentally typed the wrong URL in the
- address bar.
-
-
-
-
-
What you can do
-
- You might retype the URL or try some helpful links instead:
-
-
-
- router.push('/')}
- className='py-2 md:w-1/2'
- />
- router.push('/centric')}
- variant='outlined'
- text='Connect your community'
- className='py-2 md:w-1/2'
- />
-
-
-
-
- );
-};
-
-export default NotFound;
diff --git a/src/pages/reputation-score/score.tsx b/src/pages/reputation-score/score.tsx
index 04910b9..43970ea 100644
--- a/src/pages/reputation-score/score.tsx
+++ b/src/pages/reputation-score/score.tsx
@@ -40,7 +40,6 @@ const ScorePage = () => {
}
};
- // Use URLSearchParams to extract query parameters
const params = new URLSearchParams(window.location.search);
const tokenId = params.get('tokenId');
const address = params.get('address');