Fix recent replacements skeleton loader

This commit is contained in:
Mononaut
2024-03-15 05:33:23 +00:00
parent c12e664b9a
commit 404892174d
2 changed files with 6 additions and 5 deletions

View File

@@ -330,8 +330,8 @@ export class WebsocketService {
this.stateService.rbfLatest$.next(response.rbfLatest);
}
if (response.rbfLatestSummary) {
this.stateService.rbfLatestSummary$.next(response.rbfLatestSummary);
if (response.rbfLatestSummary !== undefined) {
this.stateService.rbfLatestSummary$.next(response.rbfLatestSummary || []);
}
if (response.txReplaced) {