Skip to content

Commit 2dc3e04

Browse files
committed
.
1 parent 495e12f commit 2dc3e04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hooks/usePaperFilter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function stringCmp(a, b) {
55
return a.toLowerCase().localeCompare(b.toLowerCase());
66
}
77

8-
export const usePaperFilter = (data) => {
8+
export const usePaperFilter = data => {
99
const [searchQuery, setSearchQuery] = useState('');
1010
const [selLabels, setSelLabels] = useState([]);
1111

src/utils/exportUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const exportBibtex = (papers) => {
1+
export const exportBibtex = papers => {
22
if (typeof window === 'undefined') return;
33

44
const bibtexEntries = papers

0 commit comments

Comments
 (0)