diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-04-13 19:49:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-13 19:49:52 -0700 |
commit | 0b43d728e4b95fe2f8085b8d01e34963f8663c0d (patch) | |
tree | a12b42404dfeff36837c3cfb761f429001663a6c /src/view/shell/NavSignupCard.tsx | |
parent | 23056daa292905b0019565dc0c42870037ed98fe (diff) | |
download | voidsky-0b43d728e4b95fe2f8085b8d01e34963f8663c0d.tar.zst |
Improve the language behaviors around the PWI (#3545)
* Handle leftnav overflow with longer languages' copy * Update the language dropdown to set ALL language prefs * Add hackfix to language cachebusting on PWI * Reset feeds on language change
Diffstat (limited to 'src/view/shell/NavSignupCard.tsx')
-rw-r--r-- | src/view/shell/NavSignupCard.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/shell/NavSignupCard.tsx b/src/view/shell/NavSignupCard.tsx index aa807f0cc..12bfa7ea0 100644 --- a/src/view/shell/NavSignupCard.tsx +++ b/src/view/shell/NavSignupCard.tsx @@ -48,7 +48,13 @@ let NavSignupCard = ({}: {}): React.ReactNode => { </Text> </View> - <View style={{flexDirection: 'row', paddingTop: 12, gap: 8}}> + <View + style={{ + flexDirection: 'row', + flexWrap: 'wrap', + paddingTop: 12, + gap: 8, + }}> <Button onPress={showCreateAccount} accessibilityHint={_(msg`Sign up`)} |