chore: fix lint

main
三咲智子 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>

View File

@ -1,3 +1,4 @@
/* eslint-disable vue/one-component-per-file */
import type { Emoji } from 'masto'
import { describe, expect, it, vi } from 'vitest'
import { renderToString } from 'vue/server-renderer'