about summary refs log tree commit diff
path: root/src/state/models/post.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-11-22 12:02:31 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-11-22 12:02:31 -0600
commitc2a39d7c1f59ddc0625b49d423c15799b5eba61b (patch)
tree542fa3bf1b28aad0504651cfc5a818239504581a /src/state/models/post.ts
parente858bb52de180645bba4f5ffa2f8bc0cfe8ad1fe (diff)
downloadvoidsky-c2a39d7c1f59ddc0625b49d423c15799b5eba61b.tar.zst
Refactor: create src/lib to reflect actual sharing of that code
Diffstat (limited to 'src/state/models/post.ts')
-rw-r--r--src/state/models/post.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/post.ts b/src/state/models/post.ts
index 767182a93..c6dfaeacd 100644
--- a/src/state/models/post.ts
+++ b/src/state/models/post.ts
@@ -2,7 +2,7 @@ import {makeAutoObservable} from 'mobx'
 import * as Post from '../../third-party/api/src/client/types/app/bsky/feed/post'
 import {AtUri} from '../../third-party/uri'
 import {RootStoreModel} from './root-store'
-import {cleanError} from '../../view/lib/strings'
+import {cleanError} from '../../lib/strings'
 
 export type PostEntities = Post.Record['entities']
 export type PostReply = Post.Record['reply']