Skip to content

Commit

Permalink
fix: code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
juanky201271 committed Dec 24, 2024
1 parent e1fc5ef commit 540ae9a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 0 additions & 2 deletions __tests__/__snapshots__/MessagesAddress.snapshot.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ exports[`Component Messages Address - test Messages Address - snapshot 1`] = `
accessible={true}
style={
{
"borderColor": "blue",
"borderWidth": 1,
"display": "flex",
"height": "94.15292353823088%",
"justifyContent": "flex-start",
Expand Down
7 changes: 5 additions & 2 deletions components/Messages/components/ContactLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,11 @@ const ContactLine: React.FunctionComponent<ContactLineProps> = ({
/>
)}
{c.status !== RPCValueTransfersStatusEnum.confirmed && (
<View style={{marginLeft: 2, marginTop: 2 }}>
<ActivityIndicator size={Platform.OS === GlobalConst.platformOSios ? 'small' : 12} color={colors.primary} />
<View style={{ marginLeft: 2, marginTop: 2 }}>
<ActivityIndicator
size={Platform.OS === GlobalConst.platformOSios ? 'small' : 12}
color={colors.primary}
/>
</View>
)}
</View>
Expand Down
7 changes: 5 additions & 2 deletions components/Messages/components/MessageLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,11 @@ const MessageLine: React.FunctionComponent<MessageLineProps> = ({
/>
)}
{vt.status !== RPCValueTransfersStatusEnum.confirmed && (
<View style={{marginLeft: 2, marginTop: 2 }}>
<ActivityIndicator size={Platform.OS === GlobalConst.platformOSios ? 'small' : 12} color={colors.primary} />
<View style={{ marginLeft: 2, marginTop: 2 }}>
<ActivityIndicator
size={Platform.OS === GlobalConst.platformOSios ? 'small' : 12}
color={colors.primary}
/>
</View>
)}
</View>
Expand Down
5 changes: 3 additions & 2 deletions components/Send/Send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -642,15 +642,16 @@ const Send: React.FunctionComponent<SendProps> = ({
const keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', () => {
slideAnim.value = withTiming(0, { duration: 100, easing: Easing.linear });
setKeyboardVisible(false);
console.log('CLOSEEEEEEEEE')
console.log('CLOSEEEEEEEEE');
});

return () => {
!!keyboardDidShowListener && keyboardDidShowListener.remove();
!!keyboardDidHideListener && keyboardDidHideListener.remove();
slideAnim.value = 0;
};
}, []);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [titleViewHeight]);

useEffect(() => {
(async () => {
Expand Down

0 comments on commit 540ae9a

Please sign in to comment.