fix mobile check

This commit is contained in:
smolgrrr 2024-08-31 22:30:02 +10:00
parent ebffb2a177
commit 49d5c3d400

View File

@ -39,7 +39,7 @@ export default function CombinedIntroAndMobile() {
localStorage.setItem('hasClosedIntro', 'true');
};
if (!showIntro && !inMobileBrowser) return null;
if (!showIntro) return null;
return (
<Transition appear show={showIntro || inMobileBrowser} as={Fragment}>