Fix show pk dialog box

This commit is contained in:
IshaVenikar 2024-07-29 15:05:45 +05:30
parent 0c9939f3fb
commit e6f74ec40f
2 changed files with 7 additions and 2 deletions

View File

@ -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>

View File

@ -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>