Skip to content

Commit 4f0cde4

Browse files
committed
Fix indicator and use review button
1 parent cdbb923 commit 4f0cde4

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

apps/builder/app/builder/shared/image-manager/image-info.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ const AssetUsagesList = ({ usages }: { usages: AssetUsage[] }) => {
201201
const UsageDot = styled(Box, {
202202
width: 6,
203203
height: 6,
204-
backgroundColor: theme.colors.foregroundDestructive,
204+
backgroundColor: "#000",
205205
border: "1px solid white",
206206
boxShadow: "0 0 3px rgb(0, 0, 0)",
207207
borderRadius: "50%",
@@ -377,7 +377,10 @@ const ImageInfoContent = ({
377377
css={{ display: "flex", alignItems: "center", gap: 4 }}
378378
>
379379
Description
380-
<Tooltip content="The description is used as the default “alt” text for the image.">
380+
<Tooltip
381+
variant="wrapped"
382+
content="The description is used as the default “alt” text for the image."
383+
>
381384
<InfoCircleIcon />
382385
</Tooltip>
383386
</Label>
@@ -407,9 +410,7 @@ const ImageInfoContent = ({
407410
) : (
408411
<Dialog>
409412
<DialogTrigger asChild>
410-
<Button color="destructive" prefix={<TrashIcon />}>
411-
Delete
412-
</Button>
413+
<Button>Review & delete</Button>
413414
</DialogTrigger>
414415
<DialogContent minWidth={360}>
415416
<DialogTitle>Delete asset?</DialogTitle>

0 commit comments

Comments
 (0)