fix linting issue

This commit is contained in:
Ricardo Espinoza 2024-11-27 23:22:57 -05:00
parent f2a540db04
commit a0afd32413
No known key found for this signature in database

View file

@ -29,7 +29,7 @@ import { useNpsSurveyStore } from './npsSurvey.store';
import { computed, ref } from 'vue';
import { useTelemetry } from '@/composables/useTelemetry';
import { useSettingsStore } from '@/stores/settings.store';
import { DisableMfaParams } from '@/api/mfa';
import type { DisableMfaParams } from '@/api/mfa';
const _isPendingUser = (user: IUserResponse | null) => !!user?.isPending;
const _isInstanceOwner = (user: IUserResponse | null) => user?.role === ROLE.Owner;