Merge remote-tracking branch 'origin/main' into feature/#313

This commit is contained in:
Dennis Postma 2025-01-25 14:45:38 +01:00
commit 95c3a1af61

View File

@ -1,5 +1,5 @@
<template>
<Modal v-for="notification in gameStore.notifications" :key="notification.id" :isModalOpen="true" @modal:close="closeNotification(notification.id)">
<Modal v-for="notification in gameStore.notifications" :key="notification.id" :isModalOpen="true" @modal:close="closeNotification(notification!.id as string)">
<template #modalHeader v-if="notification.title">
<h3 class="m-0 font-medium shrink-0 text-white">{{ notification.title }}</h3>
</template>