From d9542429a9547beee8509af80564cd265f9bdb95 Mon Sep 17 00:00:00 2001 From: winwin2011 Date: Sat, 7 Oct 2023 14:50:26 +0800 Subject: [PATCH] chore: add some dev settings --- packages/playground/src/components/Playground.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/playground/src/components/Playground.tsx b/packages/playground/src/components/Playground.tsx index 1d30777309..192729ba16 100644 --- a/packages/playground/src/components/Playground.tsx +++ b/packages/playground/src/components/Playground.tsx @@ -24,6 +24,7 @@ export default function Playground({ themes, validators }: PlaygroundProps) { const [formData, setFormData] = useState(samples.Simple.formData); const [extraErrors, setExtraErrors] = useState(); const [shareURL, setShareURL] = useState(null); + // TODO only for dev convenience, reset to `default` before merge const [theme, setTheme] = useState('carbon'); const [subtheme, setSubtheme] = useState(null); const [stylesheet, setStylesheet] = useState(null);