From 5d94133c640a803c39d3f021a597a74f92224a23 Mon Sep 17 00:00:00 2001 From: v0 Date: Sat, 21 Mar 2026 11:46:27 +0000 Subject: [PATCH] feat: restore showAdvanced state for token dialog Reintroduce 'showAdvanced' to control advanced settings visibility. Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com> --- app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/page.tsx b/app/page.tsx index 8c32f82..254129e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -162,6 +162,7 @@ export default function TwoFactorAuth() { const [isCameraOpen, setIsCameraOpen] = useState(false) const [isSettingsOpen, setIsSettingsOpen] = useState(false) const [editingToken, setEditingToken] = useState(null) + const [showAdvanced, setShowAdvanced] = useState(false) const [showExportPassword, setShowExportPassword] = useState(false) const [exportPassword, setExportPassword] = useState("") const [importPassword, setImportPassword] = useState("")