diff options
Diffstat (limited to 'src/view/com/util/post-ctrls/PostCtrls.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/PostCtrls.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index cd6db408c..c544f6409 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -32,9 +32,10 @@ interface PostCtrlsOpts { itemTitle: string isAuthor: boolean author: { + did: string handle: string - displayName: string - avatar: string + displayName?: string | undefined + avatar?: string | undefined } text: string indexedAt: string @@ -269,7 +270,7 @@ const styles = StyleSheet.create({ margin: -5, }, ctrlIconLiked: { - color: colors.red3, + color: colors.like, }, mt1: { marginTop: 1, |