aboutsummaryrefslogtreecommitdiffstats
path: root/components/Splash.js
diff options
context:
space:
mode:
Diffstat (limited to 'components/Splash.js')
-rw-r--r--components/Splash.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/Splash.js b/components/Splash.js
index 93ef3ee..472e702 100644
--- a/components/Splash.js
+++ b/components/Splash.js
@@ -8,7 +8,7 @@ const Splash = ({ type, fixed = false }) => {
const { t } = useSettings()
return (
- <div className={`${type === 'connection' ? styles.connection : styles.loader} ${fixed ? styles.fixed : ''}`}>
+ <div className={`${type === 'connection' ? styles.connection : styles.loader} ${fixed ? 'fixed' : ''}`}>
<FontAwesomeIcon icon={type === 'connection' ? faBan : faSpinner} />
<p>{type === 'connection' ? t('no_connection') : t('loading')}</p>
</div>