fix: use masto.loginTo to update masto api (#474)

This commit is contained in:
Daniel Roe 2022-12-20 15:56:54 +00:00 committed by GitHub
parent ab4321ad33
commit 60a8673757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 19 additions and 14 deletions

View file

@ -5,7 +5,7 @@ setupPageHeader()
provideGlobalCommands()
// We want to trigger rerendering the page when account changes
const key = computed(() => `${currentServer.value}:${currentUser.value?.account.id || ''}`)
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
</script>
<template>