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:
@@ -12,15 +12,13 @@ import {
|
||||
useStudioDestroy,
|
||||
mutateMetadataAutoTag,
|
||||
} from "src/core/StashService";
|
||||
import { ImageUtils } from "src/utils";
|
||||
import {
|
||||
Counter,
|
||||
DetailsEditNavbar,
|
||||
Modal,
|
||||
LoadingIndicator,
|
||||
ErrorMessage,
|
||||
} from "src/components/Shared";
|
||||
import { useToast } from "src/hooks";
|
||||
import ImageUtils from "src/utils/image";
|
||||
import { Counter } from "src/components/Shared/Counter";
|
||||
import { DetailsEditNavbar } from "src/components/Shared/DetailsEditNavbar";
|
||||
import { ModalComponent } from "src/components/Shared/Modal";
|
||||
import { LoadingIndicator } from "src/components/Shared/LoadingIndicator";
|
||||
import { ErrorMessage } from "src/components/Shared/ErrorMessage";
|
||||
import { useToast } from "src/hooks/Toast";
|
||||
import { ConfigurationContext } from "src/hooks/Config";
|
||||
import { StudioScenesPanel } from "./StudioScenesPanel";
|
||||
import { StudioGalleriesPanel } from "./StudioGalleriesPanel";
|
||||
@@ -121,7 +119,7 @@ const StudioPage: React.FC<IProps> = ({ studio }) => {
|
||||
|
||||
function renderDeleteAlert() {
|
||||
return (
|
||||
<Modal
|
||||
<ModalComponent
|
||||
show={isDeleteAlertOpen}
|
||||
icon={faTrashAlt}
|
||||
accept={{
|
||||
@@ -141,7 +139,7 @@ const StudioPage: React.FC<IProps> = ({ studio }) => {
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</Modal>
|
||||
</ModalComponent>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user