diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-03 15:21:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 15:21:17 -0500 |
commit | 2045c615a8f8a39ee9f54638a234f3d45f028399 (patch) | |
tree | 059b4435bb1c6720e40e8767c3eb0dae8d894e67 /src/view/com/post/PostText.tsx | |
parent | 9652d994dd207585fb1b8f3452382478f204f70a (diff) | |
download | voidsky-2045c615a8f8a39ee9f54638a234f3d45f028399.tar.zst |
Reorganize state models for clarity (#378)
Diffstat (limited to 'src/view/com/post/PostText.tsx')
-rw-r--r-- | src/view/com/post/PostText.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/post/PostText.tsx b/src/view/com/post/PostText.tsx index a460b57c4..1a56a5dbf 100644 --- a/src/view/com/post/PostText.tsx +++ b/src/view/com/post/PostText.tsx @@ -4,7 +4,7 @@ import {StyleProp, StyleSheet, TextStyle, View} from 'react-native' import {LoadingPlaceholder} from '../util/LoadingPlaceholder' import {ErrorMessage} from '../util/error/ErrorMessage' import {Text} from '../util/text/Text' -import {PostModel} from 'state/models/post' +import {PostModel} from 'state/models/content/post' import {useStores} from 'state/index' export const PostText = observer(function PostText({ |