chore: fix lint

This commit is contained in:
三咲智子 2022-12-01 23:42:03 +08:00
parent 989843d1d6
commit a1399ae8b2
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
2 changed files with 2 additions and 1 deletions

View file

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