From 2cc60f253aeee124fe58c8ac7137a6637092dc54 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Sat, 15 Jun 2024 11:39:02 +1000 Subject: [PATCH] refactor(ui): canvas v2 (wip) missed a spot --- .../web/src/features/controlLayers/components/Layer/Layer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invokeai/frontend/web/src/features/controlLayers/components/Layer/Layer.tsx b/invokeai/frontend/web/src/features/controlLayers/components/Layer/Layer.tsx index 214f4e825c..06235f59de 100644 --- a/invokeai/frontend/web/src/features/controlLayers/components/Layer/Layer.tsx +++ b/invokeai/frontend/web/src/features/controlLayers/components/Layer/Layer.tsx @@ -1,8 +1,8 @@ import { useDisclosure } from '@invoke-ai/ui-library'; import { useAppDispatch, useAppSelector } from 'app/store/storeHooks'; import { CanvasEntityContainer } from 'features/controlLayers/components/common/CanvasEntityContainer'; -import { LayerHeader } from 'features/controlLayers/components/RasterLayer/LayerHeader'; -import { LayerSettings } from 'features/controlLayers/components/RasterLayer/LayerSettings'; +import { LayerHeader } from 'features/controlLayers/components/Layer/LayerHeader'; +import { LayerSettings } from 'features/controlLayers/components/Layer/LayerSettings'; import { entitySelected } from 'features/controlLayers/store/controlLayersSlice'; import { memo, useCallback } from 'react';