refactor(core): adjust effect api (#11935)

This commit is contained in:
EYHN
2025-04-24 10:06:11 +00:00
parent 1d38e5787b
commit eaa1bc6bf1
41 changed files with 79 additions and 146 deletions

View File

@@ -7,7 +7,7 @@ import {
exhaustMapWithTrailing,
fromPromise,
} from '@toeverything/infra';
import { debounceTime, EMPTY, mergeMap, Observable, timeout } from 'rxjs';
import { debounceTime, Observable, timeout } from 'rxjs';
import { logger } from '../logger';
@@ -127,8 +127,7 @@ export class PersistentJSONFileStorage implements Memento {
timeout(5000),
backoffRetry({
count: Infinity,
}),
mergeMap(() => EMPTY)
})
);
})
);