From a6cd3a1a5f40f06ed9a06ca7cbfdc91bac2b5a99 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 4 Jan 2021 20:46:27 -0800 Subject: [PATCH] Fix build error --- web/pages/access-tokens.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/access-tokens.tsx b/web/pages/access-tokens.tsx index f38881740..13f5f6d83 100644 --- a/web/pages/access-tokens.tsx +++ b/web/pages/access-tokens.tsx @@ -178,7 +178,7 @@ function NewTokenModal(props) { props.onOk(name, selectedScopes) } - const [name, setName] = useState([]); + const [name, setName] = useState(''); return (