Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: "Continue" button is missing bottom margin #45329

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading