diff --git a/web/src/editor/ClearBedModal.tsx b/web/src/editor/ClearBedModal.tsx index 76fd2fc..ed5665e 100644 --- a/web/src/editor/ClearBedModal.tsx +++ b/web/src/editor/ClearBedModal.tsx @@ -31,7 +31,7 @@ export function ClearBedModal({ - - {focusedObject.name || kindDef(focusedObject.kind)?.label || 'Object'} - + {objectDisplayName(focusedObject)} {canEdit && (!focusedObject.plantable ? ( Not plantable @@ -273,18 +294,10 @@ export function GardenEditorPage() { {/* Empty-state hints (non-interactive overlays). */} {canEdit && focusedObjectId == null && objects.length === 0 && ( -
-

- Pick a shape from the palette, then tap the field to place your first bed. -

-
+ Pick a shape from the palette, then tap the field to place your first bed. )} {canEdit && focusedObject?.plantable && focusedPlops.length === 0 && !armedPlant && ( -
-

- Tap “+ Add plant”, then tap inside the bed to place plops. -

-
+ Tap “+ Add plant”, then tap inside the bed to place plops. )} @@ -330,7 +343,7 @@ export function GardenEditorPage() { {clearing && focusedObject && ( ({ id: p.id, version: p.version }))} gardenId={gid} onClose={() => setClearing(false)}