Skip to content

Commit 4622c24

Browse files
authored
fix: Merge pull request #82 from UniversalDataTool/remove-image-selector
Remove image selector from MainLayout
2 parents ea177f0 + 6ea01b0 commit 4622c24

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/MainLayout/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -295,12 +295,12 @@ export const MainLayout = ({
295295
expandedByDefault
296296
/>
297297
),
298-
(state.images?.length || 0) > 1 && (
299-
<ImageSelector
300-
onSelect={action("SELECT_REGION", "region")}
301-
images={state.images}
302-
/>
303-
),
298+
// (state.images?.length || 0) > 1 && (
299+
// <ImageSelector
300+
// onSelect={action("SELECT_REGION", "region")}
301+
// images={state.images}
302+
// />
303+
// ),
304304
<RegionSelector
305305
regions={activeImage ? activeImage.regions : emptyArr}
306306
onSelectRegion={action("SELECT_REGION", "region")}

0 commit comments

Comments
 (0)