Skip to content

Commit 6d67b64

Browse files
committed
chore(dashboard): remove the word permanent from app/ability/policy deletion
1 parent 6658a51 commit 6d67b64

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/apps/app-dashboard/src/components/developer-dashboard/ability/wrappers/ui/AbilityActionButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function AbilityActionButtons({ onOpenMutation }: AbilityActionButtonsPro
4040
<ActionButton
4141
icon={Trash2}
4242
title="Delete Ability"
43-
description="Permanently remove this ability"
43+
description="Remove this ability (this can be undone)."
4444
onClick={() => onOpenMutation('delete-ability')}
4545
variant="danger"
4646
borderColor="rgb(254 202 202 / 0.5)"

packages/apps/app-dashboard/src/components/developer-dashboard/app/wrappers/ui/AppPublishedButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export function AppPublishedButtons({
156156
<ActionButton
157157
icon={Trash2}
158158
title="Delete App"
159-
description="Permanently remove this app"
159+
description="Remove this app (this can be undone)."
160160
onClick={() => onOpenMutation('delete-app')}
161161
variant="danger"
162162
borderColor="rgb(254 202 202 / 0.5)"

packages/apps/app-dashboard/src/components/developer-dashboard/app/wrappers/ui/AppUnpublishedButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function AppUnpublishedButtons({ onOpenMutation }: AppUnpublishedButtonsP
2929
<ActionButton
3030
icon={Trash2}
3131
title="Delete App"
32-
description="Permanently remove this app"
32+
description="Remove this app (this can be undone)."
3333
onClick={() => onOpenMutation('delete-app')}
3434
variant="danger"
3535
borderColor="rgb(254 202 202 / 0.5)"

packages/apps/app-dashboard/src/components/developer-dashboard/app/wrappers/ui/AppVersionUnpublishedButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function AppVersionUnpublishedButtons({
6262
<ActionButton
6363
icon={Trash2}
6464
title="Delete Version"
65-
description="Permanently remove this version"
65+
description="Remove this version (this can be undone)."
6666
onClick={() => onOpenMutation('delete-version')}
6767
variant="danger"
6868
borderColor="rgb(254 202 202 / 0.3)"

packages/apps/app-dashboard/src/components/developer-dashboard/policy/wrappers/ui/PolicyActionButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function PolicyActionButtons({ onOpenMutation }: PolicyActionButtonsProps
4040
<ActionButton
4141
icon={Trash2}
4242
title="Delete Policy"
43-
description="Permanently remove this policy"
43+
description="Remove this policy (this can be undone)."
4444
onClick={() => onOpenMutation('delete-policy')}
4545
variant="danger"
4646
borderColor="rgb(254 202 202 / 0.5)"

0 commit comments

Comments
 (0)