diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-09-30 11:30:18 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-09-30 11:30:18 -0500 |
commit | b05a334dcbd6fbc5eb59da1d5cb111f683d5b1d8 (patch) | |
tree | f49392c21f20b488499ad285020f6f29c625cab4 /src/state/models/reposted-by-view.ts | |
parent | efa84fb8e732fe1403ad3f8d366d8572937b8e3a (diff) | |
download | voidsky-b05a334dcbd6fbc5eb59da1d5cb111f683d5b1d8.tar.zst |
Remove debug time delays
Diffstat (limited to 'src/state/models/reposted-by-view.ts')
-rw-r--r-- | src/state/models/reposted-by-view.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/state/models/reposted-by-view.ts b/src/state/models/reposted-by-view.ts index 90f4764b3..9b5b2ff51 100644 --- a/src/state/models/reposted-by-view.ts +++ b/src/state/models/reposted-by-view.ts @@ -112,7 +112,6 @@ export class RepostedByViewModel { private async _fetch(isRefreshing = false) { this._xLoading(isRefreshing) - await new Promise(r => setTimeout(r, 250)) // DEBUG try { const res = await this.rootStore.api.todo.social.getRepostedBy( Object.assign({}, this.params, {uri: this.resolvedUri}), @@ -127,7 +126,6 @@ export class RepostedByViewModel { private async _refresh() { this._xLoading(true) // TODO: refetch and update items - await new Promise(r => setTimeout(r, 250)) // DEBUG this._xIdle() } |