fix(gui): Fetch balance after swap is released, re-fetch database after progress event, change wording in progress page (#237)

This commit is contained in:
binarybaron 2024-12-23 11:59:40 +01:00 committed by GitHub
parent 27e8467ac5
commit cf20891638
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 27 additions and 8 deletions

View file

@ -35,7 +35,7 @@ export default function DebugPage() {
data={cliState}
label="Swap Daemon State (exposed via API)"
/>
<CliLogsBox label="Tor Daemon Logs" logs={torStdOut.split("\n")} />
<CliLogsBox label="Tor Daemon Logs" logs={(torStdOut || "").split("\n")} />
</Box>
</DialogContentText>
</Box>

View file

@ -2,6 +2,6 @@ import CircularProgressWithSubtitle from "../../CircularProgressWithSubtitle";
export default function ReceivedQuotePage() {
return (
<CircularProgressWithSubtitle description="Exchanging keys, zero-knowledge proofs and generating multi-signature addresses" />
<CircularProgressWithSubtitle description="Processing received quote" />
);
}