Skip to content

Commit

Permalink
Update PairSignerScreen.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
sorokin0andrey committed May 6, 2024
1 parent 5f07468 commit 34ed79b
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
ThemeProvider,
View,
deviceHeight,
isAndroid,
isIOS,
} from '@tonkeeper/uikit';
import { FC, useCallback, useEffect, useRef, useState } from 'react';
Expand Down Expand Up @@ -186,9 +187,11 @@ export const PairSignerScreen: FC = () => {
}
trasnparent
/>
<View style={styles.buttonContainer}>
<Button title={t('pairSigner.open_signer')} onPress={openSigner} />
</View>
{isAndroid ? (
<View style={styles.buttonContainer}>
<Button title={t('pairSigner.open_signer')} onPress={openSigner} />
</View>
) : null}
</Screen>
</ThemeProvider>
);
Expand Down

0 comments on commit 34ed79b

Please sign in to comment.