chore(useShortcuts): prevent double export

This commit is contained in:
Benjamin Canac
2024-03-29 16:25:02 +01:00
parent 74cfb3d18f
commit 10b56bb16c

View File

@@ -2,7 +2,7 @@ import { createSharedComposable, useActiveElement } from '@vueuse/core'
import { ref, computed, onMounted } from 'vue'
import type {} from '@vueuse/shared'
export const _useShortcuts = () => {
const _useShortcuts = () => {
const macOS = computed(() => import.meta.client && navigator && navigator.userAgent && navigator.userAgent.match(/Macintosh;/))
const metaSymbol = ref(' ')