Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akintewe committed Oct 25, 2024
1 parent 2494b20 commit b4e55fc
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/mobile/src/components/ContactsRow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ export const ContactsRow: React.FC<ContactsRowProps> = ({
</ScrollView>
</View>
);
};
};
2 changes: 1 addition & 1 deletion apps/mobile/src/components/ContactsRow/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ export default ThemedStyleSheet((theme) => ({
textAlign: 'center',
width: '100%',
},
}));
}));
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ export const FormPrivateMessage: React.FC<IFormPrivateMessage> = ({
</KeyboardFixedView>
</View>
);
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ export default ThemedStyleSheet((theme) => ({
flex: 1,
width: 'auto',
},
}));
}));
2 changes: 1 addition & 1 deletion apps/mobile/src/modules/Contacts/ContactList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -339,4 +339,4 @@ export const ContactList: React.FC<ContactListProps> = ({onClose}) => {
</View>
</Modal>
);
};
};
2 changes: 1 addition & 1 deletion apps/mobile/src/modules/Contacts/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ export default (theme: Theme) =>
backgroundColor: 'rgba(0, 0, 0, 0.5)',
justifyContent: 'flex-end',
},
});
});
2 changes: 1 addition & 1 deletion apps/mobile/src/modules/DirectMessages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ export const DirectMessages: React.FC = () => {
{activeTab === 'contacts' && <ContactList onClose={() => setActiveTab('messages')} />}
</>
);
};
};
2 changes: 1 addition & 1 deletion apps/mobile/src/modules/DirectMessages/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ export default ThemedStyleSheet((theme) => ({
bottom: Spacing.large,
right: Spacing.pagePadding,
},
}));
}));
2 changes: 1 addition & 1 deletion apps/mobile/src/types/tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,4 @@ export const TABS_ONBOARDING_WALLET: {screen?: string; title: string; tab: Selec
screen: 'Portfolio',
tab: SelectedTab.PORTFOLIO,
},
];
];

0 comments on commit b4e55fc

Please sign in to comment.