diff --git a/apps/web/src/app/organizations/billing/organization-subscription-selfhost.component.ts b/apps/web/src/app/organizations/billing/organization-subscription-selfhost.component.ts index 824447c122..774e07d65d 100644 --- a/apps/web/src/app/organizations/billing/organization-subscription-selfhost.component.ts +++ b/apps/web/src/app/organizations/billing/organization-subscription-selfhost.component.ts @@ -128,11 +128,6 @@ export class OrganizationSubscriptionSelfhostComponent implements OnInit, OnDest licenseUploaded() { this.load(); this.messagingService.send("updatedOrgLicense"); - this.platformUtilsService.showToast( - "success", - null, - this.i18nService.t("licenseUploadSuccess") - ); } manageBillingSyncSelfHosted() { diff --git a/apps/web/src/app/settings/update-license.component.ts b/apps/web/src/app/settings/update-license.component.ts index 6a43a9df99..3554a930d6 100644 --- a/apps/web/src/app/settings/update-license.component.ts +++ b/apps/web/src/app/settings/update-license.component.ts @@ -54,7 +54,11 @@ export class UpdateLicenseComponent { }); await this.formPromise; - this.platformUtilsService.showToast("success", null, this.i18nService.t("updatedLicense")); + this.platformUtilsService.showToast( + "success", + null, + this.i18nService.t("licenseUploadSuccess") + ); this.onUpdated.emit(); } catch (e) { this.logService.error(e); diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json index a6fe888ad1..829a3e2230 100644 --- a/apps/web/src/locales/en/messages.json +++ b/apps/web/src/locales/en/messages.json @@ -2062,9 +2062,6 @@ "updateLicense": { "message": "Update license" }, - "updatedLicense": { - "message": "Updated license" - }, "manageSubscription": { "message": "Manage subscription" },