From 837a54e2a2d574f99daf809faeb6f4557eafdc92 Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Wed, 31 May 2023 15:54:43 -0400 Subject: [PATCH] Drop unused imports from userLocalStorage.ts --- client/src/composables/userLocalStorage.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/composables/userLocalStorage.ts b/client/src/composables/userLocalStorage.ts index fb6f2edc1e3..2f614a7e5dd 100644 --- a/client/src/composables/userLocalStorage.ts +++ b/client/src/composables/userLocalStorage.ts @@ -1,6 +1,6 @@ -import { ref, watch, type Ref, computed, customRef } from "vue"; +import { ref, computed, customRef } from "vue"; import { useHashedUserId } from "./hashedUserId"; -import { useLocalStorage, type RemovableRef, resolveUnref } from "@vueuse/core"; +import { useLocalStorage } from "@vueuse/core"; /** * Local storage composable specific to current user.