diff --git a/src/modules/chat/views/ChatPage.vue b/src/modules/chat/views/ChatPage.vue index d22544e..e6d48f9 100644 --- a/src/modules/chat/views/ChatPage.vue +++ b/src/modules/chat/views/ChatPage.vue @@ -15,7 +15,7 @@

Failed to load chat

{{ error }}

-
@@ -32,5 +32,9 @@ import { useModuleReady } from '@/composables/useModuleReady' import ChatComponent from '../components/ChatComponent.vue' // Simple reactive module loading - no complex logic needed -const { isReady, isLoading, error } = useModuleReady('chat') +const { isLoading, error } = useModuleReady('chat') + +function handleRetry() { + window.location.reload() +} \ No newline at end of file diff --git a/src/modules/events/views/EventsPage.vue b/src/modules/events/views/EventsPage.vue index 261a786..9101ba8 100644 --- a/src/modules/events/views/EventsPage.vue +++ b/src/modules/events/views/EventsPage.vue @@ -64,6 +64,10 @@ function handlePurchaseClick(event: { selectedEvent.value = event showPurchaseDialog.value = true } + +function handleRetry() { + window.location.reload() +}