mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
chore: fix lint
This commit is contained in:
parent
989843d1d6
commit
a1399ae8b2
2 changed files with 2 additions and 1 deletions
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(() => currentServer.value + ':' + (currentUser.value?.account.id || ''))
|
||||
const key = computed(() => `${currentServer.value}:${currentUser.value?.account.id || ''}`)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue