aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-11 18:50:42 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-11 13:38:04 +0000
commit11c2b649388687570851fcb58ab59f5daaa3f194 (patch)
tree257acfbcc42e542978b67a1e4edccc87ca0be4a6 /src/components/ui
parent5.6.1-nightly.22 [skip ci] (diff)
downloadferdium-app-11c2b649388687570851fcb58ab59f5daaa3f194.tar.gz
ferdium-app-11c2b649388687570851fcb58ab59f5daaa3f194.tar.zst
ferdium-app-11c2b649388687570851fcb58ab59f5daaa3f194.zip
revert: fixing #1757 by commenting out partial fix
- Fixes issue with ferdi not starting up. - Also adds some defensive checks for the same code in other repeated locations.
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/AppLoader/styles.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ui/AppLoader/styles.js b/src/components/ui/AppLoader/styles.js
index 011f6282d..9891e0387 100644
--- a/src/components/ui/AppLoader/styles.js
+++ b/src/components/ui/AppLoader/styles.js
@@ -1,6 +1,6 @@
1let sloganTransition = 'none'; 1let sloganTransition = 'none';
2 2
3if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 3if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
4 sloganTransition = 'opacity 1s ease'; 4 sloganTransition = 'opacity 1s ease';
5} 5}
6 6