Skip to content

Commit 958a73e

Browse files
fix: fix ci error #5
1 parent 40ec03a commit 958a73e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

web/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import Profile from "./pages/profile/Profile";
1515
import Discover from "./pages/Discover";
1616
import ReadingLists from "./pages/ReadingLists";
1717
import Teams from "./pages/Teams";
18-
import NotFound from "./pages/NotFound";
18+
import NotFound from "./components/NotFound";
1919

2020
const queryClient = new QueryClient();
2121

web/src/pages/CollectionDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ const CollectionDetails = () => {
188188
const allAvailablePapers = useMemo(() => {
189189
if (!paperSearchData?.data?.content) return [];
190190
const existingPaperIds = papers?.map(p => p.paperId) || [];
191-
return paperSearchData.data.content.filter((paper: any) => !existingPaperIds.includes(paper.id));
191+
return paperSearchData.data.content.filter((paper) => !existingPaperIds.includes(paper.id));
192192
}, [paperSearchData, papers]);
193193

194194
// Client-side pagination for dialog (10 papers per page)

0 commit comments

Comments
 (0)