diff --git a/frontend/src/pages/customize/company.tsx b/frontend/src/pages/customize/company.tsx index 0de21c2..1b7a056 100644 --- a/frontend/src/pages/customize/company.tsx +++ b/frontend/src/pages/customize/company.tsx @@ -28,7 +28,7 @@ export default function CompanyList() { const router = useRouter() useEffect(() => { - if (!router.isReady) return; + if (!router.isReady) return const raw_industry_id = router.query['industry-id'] if (!raw_industry_id) { diff --git a/frontend/src/pages/home.tsx b/frontend/src/pages/home.tsx index ecf59af..f1ed2a3 100644 --- a/frontend/src/pages/home.tsx +++ b/frontend/src/pages/home.tsx @@ -1,7 +1,6 @@ import { Box, Container, Typography } from '@mui/material' import Button from '@mui/material/Button' import type { NextPage } from 'next' -import Link from 'next/link' import { useState, useEffect } from 'react' import ArticleCard from '@/components/ArticleCard' import Loading from '@/components/Loading'