Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle committed Sep 17, 2023
1 parent 13d366f commit 2490693
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/src/pages/Information/Mimetype/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import MimeSearchResult from "./components/MimeSearchResult";
const Mimetype: React.FC = () => {
const { data, isError, isLoading } = useFetchList(MIME_KEY, MIME_URL);

return <MimeSearchResult isError={isError} isLoading={true} data={data} />;
return (
<MimeSearchResult isError={isError} isLoading={isLoading} data={data} />
);
};

export default Mimetype;

0 comments on commit 2490693

Please sign in to comment.