Skip to content

Commit

Permalink
Remove specific eslint exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
s-rubenstein committed Nov 15, 2024
1 parent 69386ee commit c5fa0ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/data_search/DatasetSearchTable.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Tab from '@mui/material/Tab';
import Tabs from '@mui/material/Tabs';
import useOnMount from '@mui/utils/useOnMount'
import useOnMount from '@mui/utils/useOnMount';
import * as React from 'react';
import { Box, Button } from '@mui/material';
import { useEffect, useState } from 'react';
Expand Down Expand Up @@ -139,7 +139,7 @@ export const DatasetSearchTable = (props) => {
'dac.dacName': term
}
}))
}
}
});

if (filterTerms.length > 0) {
Expand Down Expand Up @@ -207,7 +207,7 @@ export const DatasetSearchTable = (props) => {
});
} catch (error) {
Notifications.showError({ text: 'Failed to load Elasticsearch index' });
} }, [filters, searchTerm]); // eslint-disable-line react-hooks/exhaustive-deps
} }, [filters, searchTerm]); // eslint-disable-line

return (
<>
Expand Down

0 comments on commit c5fa0ba

Please sign in to comment.