Skip to content

Commit

Permalink
[INJIMOB-2241] fix error text overlap on host selection overlay screen (
Browse files Browse the repository at this point in the history
#1723)

Signed-off-by: Abhishek Paul <[email protected]>
  • Loading branch information
abhip2565 authored Dec 9, 2024
1 parent 1c0cc47 commit 9c851db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/EditableListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const EditableListItem: React.FC<EditableListItemProps> = props => {
{props.items.map((item: ListItemProps, index) => {
return (
<React.Fragment key={index}>
<Text testID={item.testID + 'Label'}>
<Text testID={item.testID + 'Label'} style={{marginTop:10}}>
{t('editLabel', {label: item.label})}
</Text>
<Input
Expand Down
2 changes: 1 addition & 1 deletion components/ui/themes/DefaultTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ export const DefaultTheme = {
},
error: {
position: 'absolute',
top: 30,
top: 65,
left: 5,
color: Colors.Red,
fontFamily: 'Inter_600SemiBold',
Expand Down
2 changes: 1 addition & 1 deletion components/ui/themes/PurpleTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ export const PurpleTheme = {
},
error: {
position: 'absolute',
top: 30,
top: 65,
left: 5,
color: Colors.Red,
fontFamily: 'Inter_600SemiBold',
Expand Down
2 changes: 1 addition & 1 deletion machines/settings.typegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
services: never;
};
eventsCausingActions: {
"requestStoredContext": "xstate.init";
"requestStoredContext": "BIOMETRIC_CANCELLED" | "xstate.init";
"resetCredentialRegistryResponse": "CANCEL" | "UPDATE_HOST";
"resetIsBiometricToggled": "DISMISS";
"resetKeyOrderingResponse": "RESET_KEY_ORDER_RESPONSE";
Expand Down

0 comments on commit 9c851db

Please sign in to comment.