Skip to content

Commit

Permalink
fix: In onPressFollow, need to pass the bech32 address
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Thompson <jeff@thefirst.org>
  • Loading branch information
jefft0 committed Oct 16, 2024
1 parent 9e89bb3 commit 2daa7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/components/view/account/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function AccountView(props: Props) {
/>
) : (
<Button.TouchableOpacity
onPress={() => onPressFollow(user.address.toString(), callerAddress)}
onPress={() => onPressFollow(user.bech32, callerAddress)}
variant="primary"
title="Follow"
style={{ width: 100 }}
Expand Down

0 comments on commit 2daa7f9

Please sign in to comment.