diff --git a/src/interface/components/BackgroundSelector.tsx b/src/interface/components/BackgroundSelector.tsx index fcf7f9c8..e41b7a72 100644 --- a/src/interface/components/BackgroundSelector.tsx +++ b/src/interface/components/BackgroundSelector.tsx @@ -157,14 +157,14 @@ function BackgroundSelector({ isEditMode, disableTheme }: BackgroundSelectorProp

Background Images

- {/* Image uploader swatch */} + { isEditMode ? <> :
{/* Plus icon */} 
-
+
} {backgrounds.filter(bg => bg.type === 'image').map(bg => (
selectBackground(bg.id)} @@ -205,7 +205,7 @@ function BackgroundSelector({ isEditMode, disableTheme }: BackgroundSelectorProp

Background Videos

- {/* Video uploader swatch */} + { isEditMode ? <> :
{/* Plus icon */} @@ -213,6 +213,7 @@ function BackgroundSelector({ isEditMode, disableTheme }: BackgroundSelectorProp
+ } {backgrounds.filter(bg => bg.type === 'video').map(bg => (
selectBackground(bg.id)} className={`relative w-16 h-16 cursor-pointer rounded-xl transition ring dark:ring-white ring-zinc-300 ${isEditMode ? 'animate-shake' : ''} ${selectedBackground === bg.id ? 'dark:ring-2 ring-4' : 'ring-0'}`}> {isEditMode && (