Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Feb 1, 2024
1 parent eb4f6d5 commit dbf19dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/explorer/ExplorerSearchContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { matchingMenuKeys, renderMenuItem } from "../../utils/menu";

const ExplorerSearchContent = () => {
const projects = useSelector((state) => state.projects.items);
const isFetchingDependentData = useSelector((state) => state.user.isFetchingDependentData)
const isFetchingDependentData = useSelector((state) => state.user.isFetchingDependentData);

const menuItems = useMemo(() => projects.map(project => ({
// url: `/data/explorer/projects/${project.identifier}`,
Expand Down Expand Up @@ -50,6 +50,6 @@ const ExplorerSearchContent = () => {
</Layout.Content>
</Layout>
</>;
}
};

export default ExplorerSearchContent;

0 comments on commit dbf19dd

Please sign in to comment.