Skip to content

Commit

Permalink
fix: fix UI
Browse files Browse the repository at this point in the history
  • Loading branch information
salimtb committed Oct 16, 2024
1 parent 7684162 commit 1880ab5
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2047,13 +2047,13 @@ export class NetworkSettings extends PureComponent {
shouldGoBack={false}
>
<View style={styles.sheetContent}>
<View style={styles.notch} />
<BottomSheetHeader
onBack={() => {
this.closeAddRpcForm();
this.openRpcModal();
}}
>
<View style={styles.notch} />
<Text style={styles.heading}>
{strings('app_settings.add_rpc_url')}
</Text>
Expand Down Expand Up @@ -2124,7 +2124,11 @@ export class NetworkSettings extends PureComponent {
</ReusableModal>
) : null}
{isNetworkUiRedesignEnabled() && showAddBlockExplorerForm.isVisible ? (
<ReusableModal style={styles.sheetRpcForm} shouldGoBack={false}>
<ReusableModal
style={styles.sheetRpcForm}
shouldGoBack={false}
onDismiss={this.closeAddBlockExplorerRpcForm}
>
<View style={styles.sheetContent}>
<View style={styles.notch} />

Expand Down

0 comments on commit 1880ab5

Please sign in to comment.