Fix toast rendering: display toast.msg instead of object
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 4s
Test / build-check (push) Successful in 3s
PR Preview / test (pull_request) Successful in 4s
PR Preview / deploy-preview (pull_request) Successful in 12s
Test / e2e-test (push) Failing after 1m7s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 22:35:41 +00:00
parent 4d5e3c46e7
commit 5eba04a1fa

View File

@@ -64,7 +64,7 @@
<CustomDialog /> <CustomDialog />
<!-- Toast messages --> <!-- Toast messages -->
<div v-for="(toast, i) in ui.toasts" :key="i" class="toast">{{ toast }}</div> <div v-for="toast in ui.toasts" :key="toast.id" class="toast">{{ toast.msg }}</div>
</template> </template>
<script setup> <script setup>