Refactor license key deactivation process: update API to retrieve the current user's license key and improve error handling for user validation and missing license keys.

This commit is contained in:
Mauricio Siu
2026-01-28 23:32:04 -06:00
parent cbfa690a80
commit c9ffb99808
2 changed files with 27 additions and 20 deletions

View File

@@ -105,7 +105,7 @@ export function LicenseKeySettings() {
description="Are you sure you want to deactivate this license key? This will disable enterprise features."
onClick={async () => {
try {
await deactivateLicenseKey({ licenseKey });
await deactivateLicenseKey();
await utils.licenseKey.getEnterpriseSettings.invalidate();
setIsValid(false);
toast.success("License key deactivated");