From f7c7ed7bbed82f4702c83a551b25a095730764f1 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sun, 28 Jun 2026 21:30:58 +0800 Subject: [PATCH] feat(plugin): show game name and app ID in status section --- plugins/decky-vault/src/components/main-panel.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/decky-vault/src/components/main-panel.tsx b/plugins/decky-vault/src/components/main-panel.tsx index 7f3e88c..7be8d4b 100644 --- a/plugins/decky-vault/src/components/main-panel.tsx +++ b/plugins/decky-vault/src/components/main-panel.tsx @@ -306,6 +306,14 @@ export default function MainPanel({ )} + {session.gameName && ( + +
+ Game: {session.gameName} + {session.appId && <> App ID: {session.appId}} +
+
+ )} {keyTestStatus === "testing" ? "Testing..." : "Test API Key"}