From c6d8b61a00ec1bc1a74b2c899c19436bb4febd3d Mon Sep 17 00:00:00 2001 From: bits Date: Sun, 29 Mar 2026 20:46:48 +0300 Subject: [PATCH] Fix sum stuff --- src/App.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index d326528..67be870 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -26,15 +26,15 @@ interface KeyValidationResponse { } const LS_KEYS = { - spoofed: "neonGlass.spoofedUsername", - apiKey: "neonGlass.apiKey", - minimizeToTray: "neonGlass.minimizeToTray", - platform: "neonGlass.platform", - autoInject: "neonGlass.autoInject", + spoofed: "rlidentity.spoofedUsername", + apiKey: "rlidentity.apiKey", + minimizeToTray: "rlidentity.minimizeToTray", + platform: "rlidentity.platform", + autoInject: "rlidentity.autoInject", } as const; -const GITHUB_URL = "https://github.com/RLidentity"; -const FAQ_URL = "https://rlidentity.me/faq"; +const GITHUB_URL = "https://git.rlidentity.me/bits/rlidentity"; +const FAQ_URL = "https://rlidentity.me/#faq"; function isTauriRuntime() { return typeof window !== "undefined" && typeof (window as any).__TAURI_INTERNALS__ !== "undefined";