From 9b59f1df9c358d3677b4cbc3e80a73af03b7981d Mon Sep 17 00:00:00 2001 From: Csaba Tuncsik Date: Thu, 20 Apr 2023 13:25:57 +0200 Subject: [PATCH] fix(editor): Fix typo in SSO upgrade link (#6031) * fix(editor): Fix typo in SSO upgrade link * fix(editor): remove unused import --- packages/editor-ui/src/views/SettingsSso.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/editor-ui/src/views/SettingsSso.vue b/packages/editor-ui/src/views/SettingsSso.vue index 252d3f8683..4208d6d336 100644 --- a/packages/editor-ui/src/views/SettingsSso.vue +++ b/packages/editor-ui/src/views/SettingsSso.vue @@ -2,13 +2,11 @@ import { computed, ref, onBeforeMount } from 'vue'; import { Notification } from 'element-ui'; import { useSSOStore } from '@/stores/sso'; -import { useUsageStore } from '@/stores/usage'; import { useUIStore } from '@/stores/ui'; import { i18n as locale } from '@/plugins/i18n'; import CopyInput from '@/components/CopyInput.vue'; const ssoStore = useSSOStore(); -const usageStore = useUsageStore(); const uiStore = useUIStore(); const ssoActivatedLabel = computed(() => @@ -56,7 +54,7 @@ const onTest = async () => { }; const goToUpgrade = () => { - uiStore.goToUpgrade('sso', 'upgrade-sso`'); + uiStore.goToUpgrade('sso', 'upgrade-sso'); }; onBeforeMount(async () => {