Skip to content

Commit

Permalink
Merge pull request #45329 from etCoderDysto/marging-continue-button
Browse files Browse the repository at this point in the history
fix: "Continue" button is missing bottom margin
  • Loading branch information
cristipaval authored Jul 15, 2024
2 parents d301d45 + 36520b0 commit 70aa004
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/pages/workspace/members/WorkspaceOwnerChangeCheck.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, {useCallback, useEffect, useState} from 'react';
import {View} from 'react-native';
import type {OnyxEntry} from 'react-native-onyx';
import {withOnyx} from 'react-native-onyx';
import type {ValueOf} from 'type-fest';
Expand Down Expand Up @@ -76,12 +77,14 @@ function WorkspaceOwnerChangeCheck({personalDetails, policy, accountID, error}:
<>
<Text style={[styles.textHeadline, styles.mt3, styles.mb2]}>{displayTexts.title}</Text>
<Text style={styles.flex1}>{displayTexts.text}</Text>
<Button
success
large
onPress={confirm}
text={displayTexts.buttonText}
/>
<View style={styles.pb5}>
<Button
success
large
onPress={confirm}
text={displayTexts.buttonText}
/>
</View>
</>
);
}
Expand Down

0 comments on commit 70aa004

Please sign in to comment.