mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Update dependencies (again) (#3442)
* Update dependencies * Upgrade rollup * Remove all index.ts reexport files
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import React, { useState } from "react";
|
||||
import { Form } from "react-bootstrap";
|
||||
import { mutateExportObjects } from "src/core/StashService";
|
||||
import Modal from "src/components/Shared/Modal";
|
||||
import useToast from "src/hooks/Toast";
|
||||
import { ModalComponent } from "./Modal";
|
||||
import { useToast } from "src/hooks/Toast";
|
||||
import downloadFile from "src/utils/download";
|
||||
import { ExportObjectsInput } from "src/core/generated-graphql";
|
||||
import { useIntl } from "react-intl";
|
||||
@@ -46,7 +46,7 @@ export const ExportDialog: React.FC<IExportDialogProps> = (
|
||||
}
|
||||
|
||||
return (
|
||||
<Modal
|
||||
<ModalComponent
|
||||
show
|
||||
icon={faCogs}
|
||||
header={intl.formatMessage({ id: "dialogs.export_title" })}
|
||||
@@ -73,6 +73,6 @@ export const ExportDialog: React.FC<IExportDialogProps> = (
|
||||
/>
|
||||
</Form.Group>
|
||||
</Form>
|
||||
</Modal>
|
||||
</ModalComponent>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user