Skip to content

Commit

Permalink
fix(filters): Set defalt view to ''
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Apr 3, 2024
1 parent d68e07c commit 0b945c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function Home() {
const [selectedAffiliations, setSelectedAffiliations] = useState([]);
const [selectedDatasets, setSelectedDatasets] = useState([]);
const [selectedPublications, setSelectedPublications] = useState([]);
const [view, setView] = useState();
const [view, setView] = useState('');

const { data, isFetched, isFetching, refetch } = useQuery({
queryKey: ['data'],
Expand Down

0 comments on commit 0b945c1

Please sign in to comment.