about summary refs log tree commit diff
path: root/src/state/models/votes-view.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-12-22 09:17:07 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-12-22 09:17:07 -0600
commit4913a07e3365d2004e67e9131dd4b4c15094dd33 (patch)
tree6247f7fe52fdc8a6b29143f1d2f247b4e28987ec /src/state/models/votes-view.ts
parent7f4a54ff0d83983460e787fde21707405acc38b0 (diff)
downloadvoidsky-4913a07e3365d2004e67e9131dd4b4c15094dd33.tar.zst
Unvendor the api and switch to @atproto/api
Diffstat (limited to 'src/state/models/votes-view.ts')
-rw-r--r--src/state/models/votes-view.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/state/models/votes-view.ts b/src/state/models/votes-view.ts
index 64da6b227..c92d8ae22 100644
--- a/src/state/models/votes-view.ts
+++ b/src/state/models/votes-view.ts
@@ -1,7 +1,9 @@
 import {makeAutoObservable, runInAction} from 'mobx'
 import {AtUri} from '../../third-party/uri'
-import * as GetVotes from '../../third-party/api/src/client/types/app/bsky/feed/getVotes'
-import * as ActorRef from '../../third-party/api/src/client/types/app/bsky/actor/ref'
+import {
+  AppBskyFeedGetVotes as GetVotes,
+  AppBskyActorRef as ActorRef,
+} from '@atproto/api'
 import {RootStoreModel} from './root-store'
 
 export class VotesViewItemModel implements GetVotes.Vote {