Skip to content

Commit

Permalink
Merge pull request #91 from gipplab/dev
Browse files Browse the repository at this point in the history
📊 Update default filters for more responsive loading
  • Loading branch information
jpwahle authored Aug 17, 2022
2 parents 3ad413b + 9272e45 commit 63929da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/context/FilterContext.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { createContext, ReactElement, useContext, useState } from 'react';
import { Filter } from '../types';
import { metrics } from '../tools';
import { ACCESS_TYPE_OPEN } from '../consts';

const FilterContext = createContext<
| {
Expand Down Expand Up @@ -28,7 +29,7 @@ export function FilterProvider(props: { children: ReactElement | ReactElement[]
citationsMax: '',
authors: [],
venues: [],
accessType: null,
accessType: ACCESS_TYPE_OPEN,
typesOfPaper: [],
fieldsOfStudy: [],
publishers: [],
Expand Down

0 comments on commit 63929da

Please sign in to comment.