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

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