Fix show pk dialog box
This commit is contained in:
parent
0c9939f3fb
commit
e6f74ec40f
@ -24,7 +24,7 @@
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
<title>Laconic Wallet</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
|
@ -50,7 +50,12 @@ const ShowPKDialog = () => {
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
<View>
|
||||
<Dialog open={showPKDialog} onClose={hideShowPKDialog}>
|
||||
<Dialog
|
||||
open={showPKDialog}
|
||||
onClose={hideShowPKDialog}
|
||||
PaperProps={{
|
||||
style: { maxWidth: '40%' }
|
||||
}}>
|
||||
<DialogTitle>
|
||||
{!privateKey ? (
|
||||
<Typography>Show Private Key?</Typography>
|
||||
|
Loading…
Reference in New Issue
Block a user