Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Feb 21, 2024
1 parent f675232 commit fe5297c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions website/src/components/SearchPage/SearchForm.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { CircularProgress } from '@mui/material';

Check failure on line 1 in website/src/components/SearchPage/SearchForm.tsx

View workflow job for this annotation

GitHub Actions / Check format

There should be no empty line within import group
import { LocalizationProvider } from '@mui/x-date-pickers';
import { AdapterLuxon } from '@mui/x-date-pickers/AdapterLuxon';

import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { sentenceCase } from 'change-case';
import { type FC, type FormEventHandler, useMemo, useState } from 'react';
Expand Down Expand Up @@ -98,7 +97,7 @@ export const SearchForm: FC<SearchFormProps> = ({

return (
<QueryClientProvider client={queryClient}>
<LocalizationProvider dateAdapter={AdapterLuxon}>

<div className='text-right -mb-10 md:hidden'>
<button onClick={toggleMobileOpen} className='btn btn-xs'>
Modify search query
Expand Down Expand Up @@ -142,7 +141,7 @@ export const SearchForm: FC<SearchFormProps> = ({
</form>
</div>
</div>
</LocalizationProvider>

</QueryClientProvider>
);
};
Expand Down

0 comments on commit fe5297c

Please sign in to comment.