Skip to content

Commit

Permalink
fix: button background reportUserView
Browse files Browse the repository at this point in the history
  • Loading branch information
OtavioStasiak committed Dec 4, 2024
1 parent ba4d0d2 commit 4f7d58c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/views/ReportUserView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ const ReportUserView = () => {

return (
<KeyboardView
style={{ backgroundColor: colors.surfaceHover }}
style={{ backgroundColor: colors.surfaceTint }}
contentContainerStyle={styles.container}
keyboardVerticalOffset={128}>
<SafeAreaView style={[styles.containerView]} testID='report-user-view'>
<ScrollView contentContainerStyle={[styles.scroll, { backgroundColor: colors.surfaceHover }]}>
<ScrollView contentContainerStyle={[styles.scroll, { backgroundColor: colors.surfaceTint }]}>
<StatusBar />
<UserInfo username={username} name={name} />
<ControlledFormTextInput
Expand All @@ -97,7 +97,6 @@ const ReportUserView = () => {
<Button
title={I18n.t('Report')}
type='primary'
backgroundColor={colors.buttonBackgroundDangerDefault}
disabled={!isValid}
onPress={handleSubmit(submit)}
testID='report-user-view-submit'
Expand Down

0 comments on commit 4f7d58c

Please sign in to comment.