From f6db9da06c23a9f6738e2641b74d20755e4a589f Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:18:08 +1000 Subject: [PATCH] chore(ui): rename file to not cause madge to fail --- invokeai/frontend/web/src/features/system/store/systemSlice.ts | 2 +- .../web/src/features/system/store/{zod.ts => zodSchemas.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename invokeai/frontend/web/src/features/system/store/{zod.ts => zodSchemas.ts} (100%) diff --git a/invokeai/frontend/web/src/features/system/store/systemSlice.ts b/invokeai/frontend/web/src/features/system/store/systemSlice.ts index 4271a17df0..d789df49a4 100644 --- a/invokeai/frontend/web/src/features/system/store/systemSlice.ts +++ b/invokeai/frontend/web/src/features/system/store/systemSlice.ts @@ -26,7 +26,7 @@ import { import { ProgressImage } from 'services/events/types'; import { makeToast } from '../util/makeToast'; import { LANGUAGES } from './constants'; -import { zPydanticValidationError } from './zod'; +import { zPydanticValidationError } from './zodSchemas'; export type CancelStrategy = 'immediate' | 'scheduled'; diff --git a/invokeai/frontend/web/src/features/system/store/zod.ts b/invokeai/frontend/web/src/features/system/store/zodSchemas.ts similarity index 100% rename from invokeai/frontend/web/src/features/system/store/zod.ts rename to invokeai/frontend/web/src/features/system/store/zodSchemas.ts