mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-12-02 05:24:47 -05:00
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:
parent
27e8467ac5
commit
cf20891638
7 changed files with 27 additions and 8 deletions
|
|
@ -63,7 +63,8 @@ export const rpcSlice = createSlice({
|
|||
receivedCliLog(slice, action: PayloadAction<TauriLogEvent>) {
|
||||
const buffer = action.payload.buffer;
|
||||
const logs = getLogsAndStringsFromRawFileString(buffer);
|
||||
slice.logs = slice.logs.concat(logs);
|
||||
const logsWithoutExisting = logs.filter(log => !slice.logs.includes(log));
|
||||
slice.logs = slice.logs.concat(logsWithoutExisting);
|
||||
},
|
||||
contextStatusEventReceived(
|
||||
slice,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue