File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
invokeai/frontend/web/src/features/gallery/components/ImageGrid Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { combine } from '@atlaskit/pragmatic-drag-and-drop/combine' ;
2
2
import { draggable , monitorForElements } from '@atlaskit/pragmatic-drag-and-drop/element/adapter' ;
3
3
import type { FlexProps , SystemStyleObject } from '@invoke-ai/ui-library' ;
4
- import { Box , Flex , Icon , Image } from '@invoke-ai/ui-library' ;
4
+ import { Flex , Icon , Image } from '@invoke-ai/ui-library' ;
5
5
import { createSelector } from '@reduxjs/toolkit' ;
6
6
import type { AppDispatch , AppGetState } from 'app/store/store' ;
7
7
import { useAppSelector , useAppStore } from 'app/store/storeHooks' ;
@@ -28,8 +28,6 @@ import { PiImageBold } from 'react-icons/pi';
28
28
import { imagesApi } from 'services/api/endpoints/images' ;
29
29
import type { ImageDTO } from 'services/api/types' ;
30
30
31
- const GALLERY_IMAGE_CLASS = 'gallery-image' ;
32
-
33
31
const galleryImageContainerSX = {
34
32
containerType : 'inline-size' ,
35
33
w : 'full' ,
@@ -255,7 +253,7 @@ export const GalleryImage = memo(({ imageDTO }: Props) => {
255
253
data-selected-for-compare = { isSelectedForCompare }
256
254
>
257
255
< Image
258
- pointerEvents = { ' none' }
256
+ pointerEvents = " none"
259
257
src = { imageDTO . thumbnail_url }
260
258
w = { imageDTO . width }
261
259
fallback = { < GalleryImagePlaceholder /> }
You can’t perform that action at this time.
0 commit comments