fix(front): remove uploads modal shortcut

This commit is contained in:
ArneBo 2025-02-24 16:06:35 +01:00
parent 57d10afb60
commit 442a37c936
1 changed files with 1 additions and 3 deletions

View File

@ -22,9 +22,7 @@ import LibraryWidget from '~/components/federation/LibraryWidget.vue'
const { t } = useI18n() const { t } = useI18n()
const store = useStore() const store = useStore()
const { isOpen, toggle } = useModal('upload') const { isOpen } = useModal('upload')
onKeyboardShortcut('u', toggle)
type UploadDestination = type UploadDestination =
| { type: 'channel', channel?: Channel | null, filter?: 'podcast' | 'music' } | { type: 'channel', channel?: Channel | null, filter?: 'podcast' | 'music' }