fix: add user id to page key (#241)
parent
6389cbfe38
commit
b997feb6b3
2
app.vue
2
app.vue
|
@ -3,7 +3,7 @@ setupPageHeader()
|
|||
await setupI18n()
|
||||
|
||||
// We want to trigger rerendering the page when account changes
|
||||
const key = computed(() => useMasto().instances.config.url || 'default')
|
||||
const key = computed(() => currentServer.value + ':' + (currentUser.value?.account.id || ''))
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
Loading…
Reference in New Issue