about summary refs log tree commit diff
path: root/src/state/models/get-assertions-view.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/models/get-assertions-view.ts')
-rw-r--r--src/state/models/get-assertions-view.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/state/models/get-assertions-view.ts b/src/state/models/get-assertions-view.ts
index f9e78f383..4778ef132 100644
--- a/src/state/models/get-assertions-view.ts
+++ b/src/state/models/get-assertions-view.ts
@@ -1,9 +1,8 @@
 import {makeAutoObservable} from 'mobx'
-import * as GetAssertions from '../../third-party/api/src/client/types/app/bsky/graph/getAssertions'
+import {AppBskyGraphGetAssertions as GetAssertions} from '@atproto/api'
 import {RootStoreModel} from './root-store'
 
-type ResponseAssertion = GetAssertions.OutputSchema['assertions'][number]
-export type Assertion = ResponseAssertion & {
+export type Assertion = GetAssertions.Assertion & {
   _reactKey: string
 }