From 9b96149cafaaac4861e75584ef332dd688b63b94 Mon Sep 17 00:00:00 2001 From: Konstantin Tieber <46342664+konstantintieber@users.noreply.github.com> Date: Mon, 22 Sep 2025 10:36:26 +0200 Subject: [PATCH] fix(core): Don't show license activation error message twice (#19833) --- .../frontend/editor-ui/src/views/SettingsUsageAndPlan.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/frontend/editor-ui/src/views/SettingsUsageAndPlan.vue b/packages/frontend/editor-ui/src/views/SettingsUsageAndPlan.vue index c88d884c581..9987a68addd 100644 --- a/packages/frontend/editor-ui/src/views/SettingsUsageAndPlan.vue +++ b/packages/frontend/editor-ui/src/views/SettingsUsageAndPlan.vue @@ -74,11 +74,7 @@ const showActivationSuccess = () => { }; const showActivationError = (error: Error) => { - toast.showError( - error, - locale.baseText('settings.usageAndPlan.license.activation.error.title'), - error.message, - ); + toast.showError(error, locale.baseText('settings.usageAndPlan.license.activation.error.title')); }; const onLicenseActivation = async () => {