fix: snow effect shouldn't show on mobile

4chan also doesn't show it on mobile, it's too resource intensive
This commit is contained in:
Tom (plebeius.eth)
2024-12-25 17:11:14 +01:00
parent 2077a755bb
commit 5284b3da1b
+1 -1
View File
@@ -56,7 +56,7 @@ const BoardLayout = () => {
// Christmas theme
const { isEnabled: isSpecialEnabled } = useSpecialThemeStore();
useEffect(() => {
if (isSpecialEnabled) {
if (isSpecialEnabled && !isMobile) {
initSnow({ flakeCount: 150 });
}
return () => {