Wrap text in pk dialog box
This commit is contained in:
parent
e2e4f3b203
commit
e9d4e22596
@ -50,12 +50,7 @@ const ShowPKDialog = () => {
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
<View>
|
||||
<Dialog
|
||||
open={showPKDialog}
|
||||
onClose={hideShowPKDialog}
|
||||
PaperProps={{
|
||||
style: { maxWidth: '40%' }
|
||||
}}>
|
||||
<Dialog open={showPKDialog} onClose={hideShowPKDialog}>
|
||||
<DialogTitle>
|
||||
{!privateKey ? (
|
||||
<Typography>Show Private Key?</Typography>
|
||||
@ -70,6 +65,10 @@ const ShowPKDialog = () => {
|
||||
component="pre"
|
||||
variant="body1"
|
||||
style={styles.dataBoxData}
|
||||
sx={{
|
||||
wordWrap: 'break-word',
|
||||
whiteSpace: 'initial',
|
||||
}}
|
||||
>
|
||||
{privateKey}
|
||||
</Typography>
|
||||
|
@ -8,7 +8,7 @@ export const DEFAULT_NETWORKS = [
|
||||
chainId: 'laconic_9000-1',
|
||||
networkName: 'laconicd',
|
||||
namespace: COSMOS,
|
||||
rpcUrl: process.env.REACT_APP_LACONICD_RPC_URL,
|
||||
rpcUrl: process.env.REACT_APP_LACONICD_RPC_URL!,
|
||||
blockExplorerUrl: '',
|
||||
nativeDenom: 'photon',
|
||||
addressPrefix: 'laconic',
|
||||
|
Loading…
Reference in New Issue
Block a user