Skip to content

Commit

Permalink
fix: attachment picker error component default height
Browse files Browse the repository at this point in the history
  • Loading branch information
khushal87 committed Aug 9, 2024
1 parent ecc77bd commit f0299cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const styles = StyleSheet.create({
errorContainer: {
alignItems: 'center',
bottom: 0,
justifyContent: 'center',
left: 0,
paddingTop: 16,
position: 'absolute',
right: 0,
},
Expand Down Expand Up @@ -70,7 +70,7 @@ export const AttachmentPickerError = (props: AttachmentPickerErrorProps) => {
styles.errorContainer,
{
backgroundColor: white_smoke,
height: attachmentPickerBottomSheetHeight ?? 308,
height: attachmentPickerBottomSheetHeight,
},
errorContainer,
]}
Expand Down

0 comments on commit f0299cb

Please sign in to comment.