Skip to content

Commit

Permalink
fix: styling and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Dec 29, 2023
1 parent ae16863 commit 2e39e8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/search/filterComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const CalendarFilter = (props: CalendarFilterProps) => {
<div className="flex flex-row items-center gap-2">
<input
type="date"
className="appearance-none rounded-lg border-[1px] border-gray px-4 py-2"
className="rounded-lg border-[1px] border-gray px-4 py-2"
value={start}
onChange={handleStartChange}
/>
Expand All @@ -104,7 +104,7 @@ export const CalendarFilter = (props: CalendarFilterProps) => {
<div className="flex flex-row items-center gap-2">
<input
type="date"
className="appearance-none rounded-lg border-[1px] border-gray px-4 py-2"
className="rounded-lg border-[1px] border-gray px-4 py-2"
value={end}
onChange={handleEndChange}
/>
Expand Down
2 changes: 1 addition & 1 deletion components/search/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ const Search = () => {
});

fetchData();
}, [university, ge]);
}, [university, ge, toast]);

return (
<>
Expand Down

0 comments on commit 2e39e8e

Please sign in to comment.