fix: typo in "twitter link" and "invite to hoppscotch" action (#3346)

This commit is contained in:
Liyas Thomas
2023-09-13 11:55:58 +05:30
committed by GitHub
parent d2d1674d31
commit 72b4a1fc4e
2 changed files with 7 additions and 16 deletions

View File

@@ -80,10 +80,11 @@ const props = defineProps<{
active: boolean
}>()
const formattedShortcutKeys = computed(() =>
props.entry.meta?.keyboardShortcut?.map((key) => {
return SPECIAL_KEY_CHARS[key] ?? capitalize(key)
})
const formattedShortcutKeys = computed(
() =>
props.entry.meta?.keyboardShortcut?.map((key) => {
return SPECIAL_KEY_CHARS[key] ?? capitalize(key)
})
)
const emit = defineEmits<{