fix: add missing onUnmounted import in BriefingView

This commit is contained in:
2026-03-26 18:50:25 -04:00
parent 08d738ddfb
commit 916cfa50df
+1 -1
View File
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, computed, onMounted, watch } from 'vue'
import { ref, computed, onMounted, onUnmounted, watch } from 'vue'
import { useChatStore } from '@/stores/chat'
import ChatMessage from '@/components/ChatMessage.vue'
import WeatherCard from '@/components/WeatherCard.vue'