1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

fix sentry crash

This commit is contained in:
Andrew Simachev 2024-06-11 15:50:21 +02:00
parent 98bb4e4155
commit 728ec8d2a3
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8

View file

@ -71,7 +71,7 @@ const PopupSettingsPagePhrase = observer(class PopupSettingsPagePhrase extends R
Renderer.send('keytarGet', account.id).then((value: string) => {
C.WalletConvert(value, '', (message: any) => {
if (!message.error.code) {
this.refPhrase.setValue(value);
this.refPhrase?.setValue(value);
this.setState({ entropy: message.entropy });
};
});