diff options
author | Eric Bailey <git@esb.lol> | 2024-03-21 12:21:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 12:21:36 -0500 |
commit | 5f39ca31872af0554d79d9a6d0b070110385e9bd (patch) | |
tree | bdb1c9eb4d9e6e7aafe17f67999b83540e1e8df3 /src/view/com/auth/SplashScreen.web.tsx | |
parent | 4ff2bb7abaac0eb8152d688ab7c71df84e725d3a (diff) | |
download | voidsky-5f39ca31872af0554d79d9a6d0b070110385e9bd.tar.zst |
Mods UI fixes (#3296)
* Fix report dialog buttons on Android by adjusting styles * Dry up label pref comp
Diffstat (limited to 'src/view/com/auth/SplashScreen.web.tsx')
-rw-r--r-- | src/view/com/auth/SplashScreen.web.tsx | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index e8f312491..5361baa76 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -1,21 +1,22 @@ import React from 'react' -import {View, Pressable} from 'react-native' +import {Pressable, View} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {ErrorBoundary} from 'view/com/util/ErrorBoundary' -import {CenteredView} from '../util/Views' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {Trans, msg} from '@lingui/macro' -import {Logo} from '#/view/icons/Logo' -import {Logotype} from '#/view/icons/Logotype' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' + import {sanitizeAppLanguageSetting} from '#/locale/helpers' -import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' import {APP_LANGUAGES} from '#/locale/languages' +import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' +import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' +import {Logo} from '#/view/icons/Logo' +import {Logotype} from '#/view/icons/Logotype' +import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron' -import {Text} from '#/components/Typography' import {InlineLink} from '#/components/Link' +import {Text} from '#/components/Typography' +import {CenteredView} from '../util/Views' export const SplashScreen = ({ onDismiss, |