diff --git a/native/community-settings/tag-farcaster-channel/tag-channel-button.react.js b/native/community-settings/tag-farcaster-channel/tag-channel-button.react.js --- a/native/community-settings/tag-farcaster-channel/tag-channel-button.react.js +++ b/native/community-settings/tag-farcaster-channel/tag-channel-button.react.js @@ -77,7 +77,7 @@ setError(null); // This is the "Other" option - if (selectedIndex === channelOptions.length) { + if (selectedIndex === 0) { navigate<'TagFarcasterChannelByName'>({ name: TagFarcasterChannelByNameRouteName, params: { communityID }, @@ -86,7 +86,7 @@ return; } - const channel = channelOptions[selectedIndex]; + const channel = channelOptions[selectedIndex - 1]; createTag(channel.id); },