From 8215d6e12978d3511147df5ad822ebf333e0de8a Mon Sep 17 00:00:00 2001 From: Jesse Mazzella Date: Wed, 31 Jan 2024 10:08:21 -0800 Subject: [PATCH] refactor: rename --- src/ui/composables/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/composables/event.js b/src/ui/composables/event.js index 771505c741..f6d6e786c2 100644 --- a/src/ui/composables/event.js +++ b/src/ui/composables/event.js @@ -29,7 +29,7 @@ import { isRef, onBeforeMount, onBeforeUnmount, onMounted, watch } from 'vue'; * This is a Vue composition API utility function. * @param {EventTarget} target - The target to attach the event listener to. * @param {string} event - The name of the event to listen for. - * @param {Function} callback - The callback function to execute when the event is triggered. + * @param {Function} handler - The callback function to execute when the event is triggered. */ export function useEventListener(target, event, handler) { const addListener = (el) => {