diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-05-08 21:00:38 +0100 |
---|---|---|
committer | fenn-cs <fenn25.fn@gmail.com> | 2024-05-15 11:51:07 +0100 |
commit | 23c71bd862d8f6d13d2f9ed08c932a5eb63905bc (patch) | |
tree | 76dc119a31481e225b2718f11c8957b98820d92d | |
parent | f3e72aff7c0dec5934c1c797ec301ea0e4f4253b (diff) | |
download | nextcloud-server-23c71bd862d8f6d13d2f9ed08c932a5eb63905bc.tar.gz nextcloud-server-23c71bd862d8f6d13d2f9ed08c932a5eb63905bc.zip |
fix(deleteAction): Remove unused nc l10n import
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
-rw-r--r-- | apps/files/src/actions/deleteAction.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/actions/deleteAction.ts b/apps/files/src/actions/deleteAction.ts index c46de9c652e..129ef0f9877 100644 --- a/apps/files/src/actions/deleteAction.ts +++ b/apps/files/src/actions/deleteAction.ts @@ -22,7 +22,7 @@ import { emit } from '@nextcloud/event-bus' import { Permission, Node, View, FileAction, FileType } from '@nextcloud/files' import { showInfo } from '@nextcloud/dialogs' -import { translate as t, translatePlural as n } from '@nextcloud/l10n' +import { translate as t } from '@nextcloud/l10n' import axios from '@nextcloud/axios' import CloseSvg from '@mdi/svg/svg/close.svg?raw' |