diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-22 09:17:07 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-22 09:17:07 -0600 |
commit | 4913a07e3365d2004e67e9131dd4b4c15094dd33 (patch) | |
tree | 6247f7fe52fdc8a6b29143f1d2f247b4e28987ec /src/state/index.ts | |
parent | 7f4a54ff0d83983460e787fde21707405acc38b0 (diff) | |
download | voidsky-4913a07e3365d2004e67e9131dd4b4c15094dd33.tar.zst |
Unvendor the api and switch to @atproto/api
Diffstat (limited to 'src/state/index.ts')
-rw-r--r-- | src/state/index.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/state/index.ts b/src/state/index.ts index 9634e1d26..aa24eb27e 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -1,7 +1,6 @@ import {autorun} from 'mobx' import {Platform} from 'react-native' -import {sessionClient as AtpApi} from '../third-party/api' -import type {SessionServiceClient} from '../third-party/api/src/index' +import {sessionClient as AtpApi, SessionServiceClient} from '@atproto/api' import {RootStoreModel} from './models/root-store' import * as libapi from './lib/api' import * as storage from './lib/storage' |