fix(core): Don't show license activation error message twice (#19833)

This commit is contained in:
Konstantin Tieber 2025-09-22 10:36:26 +02:00 committed by GitHub
parent 5591fdc42b
commit 9b96149caf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 () => {