about summary refs log tree commit diff
path: root/src/state/models/reposted-by-view.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/models/reposted-by-view.ts')
-rw-r--r--src/state/models/reposted-by-view.ts2
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()
   }