Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/src/pages/ProjectPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -702,11 +702,12 @@
try {
await uploadFilesToBackend(files);
await fetchFiles();
await fetchPapers(projectUuid);
} catch (error) {
console.error("Problem uploading the files", error);
}
},
[

Check warning on line 710 in client/src/pages/ProjectPage.tsx

View workflow job for this annotation

GitHub Actions / lint-typecheck-client

React Hook useCallback has missing dependencies: 'fetchPapers' and 'projectUuid'. Either include them or remove the dependency array
uploadFilesToBackend,
fetchFiles,
// loadPapers
Expand Down
Loading