Skip to content

Commit 2d38170

Browse files
committed
Final lint
1 parent 7ab8992 commit 2d38170

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

my-app/src/presenters/SearchbarPresenter.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const SearchbarPresenter = observer(({ model }) => {
2626
}), []); // Options never change
2727

2828
// Debounced search function - afterwards we sort with startWith() by hand
29+
// eslint-disable-next-line react-hooks/exhaustive-deps
2930
const searchCourses = useCallback(debounce((query) => {
3031
if(!model?.filteredCourses)
3132
return;

my-app/src/views/Components/FavouriteDropdown.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import React, { useState } from 'react';
22
import { observer } from "mobx-react-lite";
33

44
const FavouritesDropdown = observer((props) => {
5-
const [shareUrl, setShareUrl] = useState("");
65
const [copied, setCopied] = useState(false);
76

87
function handleShareCourses() {

0 commit comments

Comments
 (0)