Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Dec 1, 2022
1 parent 989843d commit a1399ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions tests/content-rich.test.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit a1399ae

Please sign in to comment.