Hide about modal by default

This commit is contained in:
Luck
2025-06-20 08:38:03 +01:00
parent 791fa3e469
commit 86e380a5f6

View File

@@ -23,7 +23,7 @@ export default function App() {
'dark',
pref => !!themes[pref]
);
const [showAbout, setShowAbout] = useState<boolean>(true);
const [showAbout, setShowAbout] = useState<boolean>(false);
function setContent(content: string) {
setActualContent(content);