Fix sum stuff

This commit is contained in:
bits 2026-03-29 20:46:48 +03:00
parent ee0e403195
commit c6d8b61a00

View File

@ -26,15 +26,15 @@ interface KeyValidationResponse {
} }
const LS_KEYS = { const LS_KEYS = {
spoofed: "neonGlass.spoofedUsername", spoofed: "rlidentity.spoofedUsername",
apiKey: "neonGlass.apiKey", apiKey: "rlidentity.apiKey",
minimizeToTray: "neonGlass.minimizeToTray", minimizeToTray: "rlidentity.minimizeToTray",
platform: "neonGlass.platform", platform: "rlidentity.platform",
autoInject: "neonGlass.autoInject", autoInject: "rlidentity.autoInject",
} as const; } as const;
const GITHUB_URL = "https://github.com/RLidentity"; const GITHUB_URL = "https://git.rlidentity.me/bits/rlidentity";
const FAQ_URL = "https://rlidentity.me/faq"; const FAQ_URL = "https://rlidentity.me/#faq";
function isTauriRuntime() { function isTauriRuntime() {
return typeof window !== "undefined" && typeof (window as any).__TAURI_INTERNALS__ !== "undefined"; return typeof window !== "undefined" && typeof (window as any).__TAURI_INTERNALS__ !== "undefined";