fix: Consistency of member/editor language

fix: 'Delete' option on collection menu should show as dangerous
This commit is contained in:
Tom Moor
2024-01-31 20:55:37 -05:00
parent 0f125886b7
commit 8e3cec01f8
5 changed files with 18 additions and 16 deletions

View File

@@ -161,9 +161,10 @@ export const unstarCollection = createAction({
});
export const deleteCollection = createAction({
name: ({ t }) => t("Delete"),
name: ({ t }) => `${t("Delete")}`,
analyticsName: "Delete collection",
section: CollectionSection,
dangerous: true,
icon: <TrashIcon />,
visible: ({ activeCollectionId, stores }) => {
if (!activeCollectionId) {