fix(Projects): set overflow-y to auto on Wrapper

This commit is contained in:
Jordan Knott 2021-01-05 19:06:49 -06:00
parent be7e945313
commit f9e6fba552
2 changed files with 2 additions and 1 deletions

View File

@ -159,7 +159,7 @@ const Minify = styled.div`
`;
const ProjectFinder = () => {
const { loading, data } = useGetProjectsQuery({ fetchPolicy: 'cache-and-network' });
const { data } = useGetProjectsQuery({ fetchPolicy: 'cache-and-network' });
const [search, setSearch] = useState('');
const [minified, setMinified] = useStickyState<Array<string>>([], 'project_finder_minified');
const { hidePopup } = usePopup();

View File

@ -150,6 +150,7 @@ const Wrapper = styled.div`
flex-direction: row;
align-items: flex-start;
justify-content: center;
overflow-y: auto;
`;
const ProjectSectionTitleWrapper = styled.div`