chore: prettier pass

This commit is contained in:
Huskydog9988
2025-04-15 21:46:34 -04:00
parent bc5ab53b50
commit 297bda6e97
62 changed files with 247 additions and 236 deletions
+2 -2
View File
@@ -15,7 +15,7 @@
>
<NuxtLink
v-for="[name, link] in notification.actions.map((e) =>
e.split('|')
e.split('|'),
)"
:key="name"
type="button"
@@ -54,7 +54,7 @@ async function deleteMe() {
});
const notifications = useNotifications();
const indexOfMe = notifications.value.findIndex(
(e) => e.id === props.notification.id
(e) => e.id === props.notification.id,
);
// Delete me
notifications.value.splice(indexOfMe, 1);