diff options
author | Ansh <anshnanda10@gmail.com> | 2023-03-02 16:51:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 18:51:13 -0600 |
commit | aeb04a2ed0b90091f92fd1130bd3d30a76449cb2 (patch) | |
tree | 2f0bf689a7cefdc8120ee5f849adce2c128d30bb /src | |
parent | 403c187cf555bba8cb24c02076a275fc03df9644 (diff) | |
download | voidsky-aeb04a2ed0b90091f92fd1130bd3d30a76449cb2.tar.zst |
make authorAvatar optional prop (#254)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/PostMeta.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx index 0c5d41cab..af08708b4 100644 --- a/src/view/com/util/PostMeta.tsx +++ b/src/view/com/util/PostMeta.tsx @@ -9,7 +9,7 @@ import {observer} from 'mobx-react-lite' import FollowButton from '../profile/FollowButton' interface PostMetaOpts { - authorAvatar: string | undefined + authorAvatar?: string authorHandle: string authorDisplayName: string | undefined timestamp: string |