From 2daa7f9f751a45be14cfcad96fea1d9d02ae77b2 Mon Sep 17 00:00:00 2001 From: Jeff Thompson Date: Wed, 16 Oct 2024 11:26:42 +0200 Subject: [PATCH] fix: In onPressFollow, need to pass the bech32 address Signed-off-by: Jeff Thompson --- mobile/components/view/account/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/components/view/account/index.tsx b/mobile/components/view/account/index.tsx index bad769f..827d54c 100644 --- a/mobile/components/view/account/index.tsx +++ b/mobile/components/view/account/index.tsx @@ -61,7 +61,7 @@ function AccountView(props: Props) { /> ) : ( onPressFollow(user.address.toString(), callerAddress)} + onPress={() => onPressFollow(user.bech32, callerAddress)} variant="primary" title="Follow" style={{ width: 100 }}