Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
khushboovashi committed Aug 12, 2024
1 parent 4ac665d commit c2fb7c7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ export default function ImportExportServers({onClose}) {
const [selectionSchemaInstance, setSelectionSchemaInstance] = React.useState();
const api = getApiInstance();

React.useEffect(() => {
const impExpSchema = new ImportExportSelectionSchema();
setSelectionSchemaInstance(impExpSchema);
}, []);
React.useEffect(() => {
const impExpSchema = new ImportExportSelectionSchema();
setSelectionSchemaInstance(impExpSchema);
}, []);

const onSave = () => {
let post_data = {'filename': selectionFormData.filename},
Expand Down

0 comments on commit c2fb7c7

Please sign in to comment.