Skip to content

Commit

Permalink
Fix(INJI-369): After changing the languages made fixes in screens Err…
Browse files Browse the repository at this point in the history
…or, Auth & Intro-Sliders

Signed-off-by: anil_majji <[email protected]>
  • Loading branch information
Anil-kumar-Majji committed Nov 24, 2023
1 parent 7f2293f commit 9f5e78e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/ui/Error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const Error: React.FC<ErrorProps> = props => {
{props.tryAgain && (
<Button
onPress={props.tryAgain}
width={Dimensions.get('screen').width * 0.46}
width={Dimensions.get('screen').width * 0.54}
title={t('tryAgain')}
type="outline"
testID="tryAgain"
Expand Down
1 change: 0 additions & 1 deletion components/ui/themes/DefaultTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,6 @@ export const DefaultTheme = {
borderRadius: 9,
width: Dimensions.get('window').width * 0.72,
alignSelf: 'center',
margin: 3,
height: 54,
},
float: {
Expand Down
2 changes: 1 addition & 1 deletion screens/AuthScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const AuthScreen: React.FC<RootRouteProps> = props => {
return (
<Column
fill
padding={[32, 32, 32, 32]}
padding={[32, 25, 32, 32]}
backgroundColor={Theme.Colors.whiteBackgroundColor}
align="space-between">
<MessageOverlay
Expand Down
4 changes: 2 additions & 2 deletions screens/Home/IntroSlidersScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ export const IntroSlidersScreen: React.FC<RootRouteProps> = props => {
type="plain"
title={t('back')}
onPress={controller.BACK}
styles={{height: 150}}
styles={{height: 40, maxWidth: 115}}
/>
) : (
<Button
testID="skip"
type="plain"
title={t('skip')}
onPress={controller.NEXT}
styles={{height: 150}}
styles={{height: 40, width: 115}}
/>
)}
</Column>
Expand Down

0 comments on commit 9f5e78e

Please sign in to comment.