diff options
Diffstat (limited to 'src/view/com/feeds')
-rw-r--r-- | src/view/com/feeds/CustomFeed.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/feeds/CustomFeed.tsx b/src/view/com/feeds/CustomFeed.tsx index ef8de8b85..79f1dd74d 100644 --- a/src/view/com/feeds/CustomFeed.tsx +++ b/src/view/com/feeds/CustomFeed.tsx @@ -20,6 +20,7 @@ import {useStores} from 'state/index' import {pluralize} from 'lib/strings/helpers' import {AtUri} from '@atproto/api' import * as Toast from 'view/com/util/Toast' +import {sanitizeHandle} from 'lib/strings/handles' export const CustomFeed = observer( ({ @@ -86,7 +87,7 @@ export const CustomFeed = observer( {item.displayName} </Text> <Text style={[pal.textLight]} numberOfLines={3}> - by @{item.data.creator.handle} + by {sanitizeHandle(item.data.creator.handle, '@')} </Text> </View> {showSaveBtn && ( |