From 519772fd88ae72bea3aa2b7300caec9fe2be9f9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Tue, 10 Oct 2023 22:20:51 -0400 Subject: [PATCH] fix(components): remove type assertion from body of genre picker component --- components/story/atoms/genre.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/story/atoms/genre.vue b/components/story/atoms/genre.vue index 80dda58..f18f689 100644 --- a/components/story/atoms/genre.vue +++ b/components/story/atoms/genre.vue @@ -6,7 +6,9 @@ value: a, label: a, })); - const { value, errorMessage, name, setValue } = useField(fname + "genre"); + const { value, errorMessage, name, setValue } = useField( + fname + "genre", + );