From 2d60399989d31e1b20a1c2ee8e2b471493df2fca Mon Sep 17 00:00:00 2001 From: bits Date: Sun, 29 Mar 2026 20:50:02 +0300 Subject: [PATCH] fix sum studf --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 67be870..68f3ed4 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -200,7 +200,7 @@ export default function App() { setStatus("validating key..."); setIsRevoked(false); try { - const hwid = await tryInvoke("get_hwid") || "UNKNOWN"; + const hwid = await tryInvoke("get_hwid") || "UNKNOWN-HWID"; const res = await tryInvoke("validate_key", { key: keyToTry.trim(), hwid }); if (res && res.status === "valid") {