about summary refs log tree commit diff
path: root/src/state/models/user-followers-view.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/models/user-followers-view.ts')
-rw-r--r--src/state/models/user-followers-view.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/models/user-followers-view.ts b/src/state/models/user-followers-view.ts
index 21244c5c4..9ec5a42a6 100644
--- a/src/state/models/user-followers-view.ts
+++ b/src/state/models/user-followers-view.ts
@@ -1,5 +1,5 @@
 import {makeAutoObservable} from 'mobx'
-import * as GetUserFollowers from '../../third-party/api/src/types/todo/social/getUserFollowers'
+import * as GetUserFollowers from '../../third-party/api/src/types/app/bsky/getUserFollowers'
 import {RootStoreModel} from './root-store'
 
 type Subject = GetUserFollowers.OutputSchema['subject']
@@ -82,7 +82,7 @@ export class UserFollowersViewModel {
   private async _fetch(isRefreshing = false) {
     this._xLoading(isRefreshing)
     try {
-      const res = await this.rootStore.api.todo.social.getUserFollowers(
+      const res = await this.rootStore.api.app.bsky.getUserFollowers(
         this.params,
       )
       this._replaceAll(res)