Skip to content
/ qp-n8n Public
forked from n8n-io/n8n

Commit

Permalink
fix(editor): Fix typo in SSO upgrade link (n8n-io#6031)
Browse files Browse the repository at this point in the history
* fix(editor): Fix typo in SSO upgrade link

* fix(editor): remove unused import
  • Loading branch information
cstuncsik authored and sunilrr committed Apr 24, 2023
1 parent 5287a4b commit d898cf4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/editor-ui/src/views/SettingsSso.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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(() =>
Expand Down Expand Up @@ -56,7 +54,7 @@ const onTest = async () => {
};
const goToUpgrade = () => {
uiStore.goToUpgrade('sso', 'upgrade-sso`');
uiStore.goToUpgrade('sso', 'upgrade-sso');
};
onBeforeMount(async () => {
Expand Down

0 comments on commit d898cf4

Please sign in to comment.