From 442a37c936ddaaca3ee29389238f9ae8643ce0e0 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 24 Feb 2025 16:06:35 +0100 Subject: [PATCH] fix(front): remove uploads modal shortcut --- front/src/ui/modals/Upload.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/front/src/ui/modals/Upload.vue b/front/src/ui/modals/Upload.vue index 2c711ba71..f50846295 100644 --- a/front/src/ui/modals/Upload.vue +++ b/front/src/ui/modals/Upload.vue @@ -22,9 +22,7 @@ import LibraryWidget from '~/components/federation/LibraryWidget.vue' const { t } = useI18n() const store = useStore() -const { isOpen, toggle } = useModal('upload') - -onKeyboardShortcut('u', toggle) +const { isOpen } = useModal('upload') type UploadDestination = | { type: 'channel', channel?: Channel | null, filter?: 'podcast' | 'music' }