diff --git a/packages/hoppscotch-app/components/app/Fuse.vue b/packages/hoppscotch-app/components/app/Fuse.vue index 424b49683..985acc5fa 100644 --- a/packages/hoppscotch-app/components/app/Fuse.vue +++ b/packages/hoppscotch-app/components/app/Fuse.vue @@ -53,17 +53,17 @@ const searchResultsItems = computed(() => const emitSearchAction = (action: HoppAction) => emit("action", action) -const { bindArrowKeysListerners, unbindArrowKeysListerners, selectedEntry } = +const { bindArrowKeysListeners, unbindArrowKeysListeners, selectedEntry } = useArrowKeysNavigation(searchResultsItems, { onEnter: emitSearchAction, stopPropagation: true, }) onMounted(() => { - bindArrowKeysListerners() + bindArrowKeysListeners() }) onUnmounted(() => { - unbindArrowKeysListerners() + unbindArrowKeysListeners() }) diff --git a/packages/hoppscotch-app/components/app/Header.vue b/packages/hoppscotch-app/components/app/Header.vue index b7a80dc79..a53e7a886 100644 --- a/packages/hoppscotch-app/components/app/Header.vue +++ b/packages/hoppscotch-app/components/app/Header.vue @@ -145,7 +145,7 @@ diff --git a/packages/hoppscotch-app/components/http/PreRequestScript.vue b/packages/hoppscotch-app/components/http/PreRequestScript.vue index 8cd5fe7ae..a10edd604 100644 --- a/packages/hoppscotch-app/components/http/PreRequestScript.vue +++ b/packages/hoppscotch-app/components/http/PreRequestScript.vue @@ -31,7 +31,7 @@