From 73dab4dd6e97583cbd5524dc83959683b623e38f Mon Sep 17 00:00:00 2001 From: Flycro Date: Sat, 23 Mar 2024 21:28:13 +0100 Subject: [PATCH] feat: Changed Vote Icon to Check --- nuxt/components/modal/CastVote.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nuxt/components/modal/CastVote.vue b/nuxt/components/modal/CastVote.vue index d5127a9..1cf05ac 100644 --- a/nuxt/components/modal/CastVote.vue +++ b/nuxt/components/modal/CastVote.vue @@ -32,7 +32,7 @@ const { refresh: onVote, status } = useFetch(`vote`, { async onResponse({ response }) { if (response.ok) { useToast().add({ - icon: 'i-heroicons-check-circle-20-solid', + icon: 'i-heroicons-check-circle', title: 'Abstimmung erfolgreich.', color: 'emerald', }) @@ -45,12 +45,12 @@ const { refresh: onVote, status } = useFetch(`vote`, {