Skip to content

Commit

Permalink
refactor: css fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajat-Dabade committed Aug 28, 2024
1 parent c90d93d commit 3ec9122
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const EmojiFiltered: React.FC<Props> = ({
horizontal={true}
showsHorizontalScrollIndicator={false}
showsVerticalScrollIndicator={false}
contentContainerStyle={style.listContainer}
contentContainerStyle={data.length === 0 && style.listContainer}
/>
</View>
);
Expand Down
2 changes: 1 addition & 1 deletion app/components/post_draft/custom_emoji_picker/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const CustomEmojiPicker: React.FC<Props> = ({
onEmojiPress(emoji);
};
return (
<View style={{height: isEmojiSearchFocused ? 100 : 300, padding: 8}}>
<View style={{height: isEmojiSearchFocused ? 105 : 300, padding: 8}}>
<EmojiPicker
onEmojiPress={handleEmojiPress}
testID='custom_emoji_picker'
Expand Down

0 comments on commit 3ec9122

Please sign in to comment.