Update dependencies (again) (#3442)

* Update dependencies
* Upgrade rollup
* Remove all index.ts reexport files
This commit is contained in:
DingDongSoLong4
2023-02-17 00:42:44 +02:00
committed by GitHub
parent a1851b3713
commit bd747317d4
202 changed files with 1297 additions and 1406 deletions

View File

@@ -1,10 +1,11 @@
import React, { useState } from "react";
import { Modal, SceneSelect } from "src/components/Shared";
import { useToast } from "src/hooks";
import { ModalComponent } from "./Modal";
import { SceneSelect } from "./Select";
import { useToast } from "src/hooks/Toast";
import { useIntl } from "react-intl";
import { faSignOutAlt } from "@fortawesome/free-solid-svg-icons";
import { Col, Form, Row } from "react-bootstrap";
import { FormUtils } from "src/utils";
import FormUtils from "src/utils/form";
import { mutateSceneAssignFile } from "src/core/StashService";
interface IFile {
@@ -59,7 +60,7 @@ export const ReassignFilesDialog: React.FC<IReassignFilesDialogProps> = (
}
return (
<Modal
<ModalComponent
show
icon={faSignOutAlt}
header={header}
@@ -94,8 +95,6 @@ export const ReassignFilesDialog: React.FC<IReassignFilesDialogProps> = (
</Col>
</Form.Group>
</Form>
</Modal>
</ModalComponent>
);
};
export default ReassignFilesDialog;