File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import Profile from "./pages/profile/Profile";
1515import Discover from "./pages/Discover" ;
1616import ReadingLists from "./pages/ReadingLists" ;
1717import Teams from "./pages/Teams" ;
18- import NotFound from "./pages /NotFound" ;
18+ import NotFound from "./components /NotFound" ;
1919
2020const queryClient = new QueryClient ( ) ;
2121
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments