fix: lint
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2022-10-25 21:16:55 +02:00
parent 8a5b1ab3e3
commit e13e477682
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 0 additions and 4 deletions

View File

@ -43,7 +43,6 @@ import userTeam from '@/components/sharing/userTeam.vue'
import {useBaseStore} from '@/stores/base'
import {useConfigStore} from '@/stores/config'
import {useAuthStore} from '@/stores/auth'
const {t} = useI18n({useScope: 'global'})
@ -54,7 +53,6 @@ const title = computed(() => list.value?.title
)
useTitle(title)
const authStore = useAuthStore()
const configStore = useConfigStore()
const linkSharingEnabled = computed(() => configStore.linkSharingEnabled)

View File

@ -37,7 +37,6 @@ import {RIGHTS} from '@/constants/rights'
import CreateEdit from '@/components/misc/create-edit.vue'
import manageSharing from '@/components/sharing/userTeam.vue'
import {useTitle} from '@/composables/useTitle'
import {useAuthStore} from '@/stores/auth'
const {t} = useI18n({useScope: 'global'})
@ -49,7 +48,6 @@ const title = computed(() => namespace.value?.title
)
useTitle(title)
const authStore = useAuthStore()
const userIsAdmin = computed(() => namespace?.value?.maxRight === RIGHTS.ADMIN)
async function loadNamespace(namespaceId: number) {