diff --git a/src/pages/Group/GroupTabs/GroupFeed/GroupFeed.tsx b/src/pages/Group/GroupTabs/GroupFeed/GroupFeed.tsx index d9204c23..062f3c11 100644 --- a/src/pages/Group/GroupTabs/GroupFeed/GroupFeed.tsx +++ b/src/pages/Group/GroupTabs/GroupFeed/GroupFeed.tsx @@ -166,28 +166,6 @@ export function GroupFeed(){

{post.content}

- { !hasAvailableOption(OPTIONS_DEFINITION) || !canSeeMenu(post) ? null : - - - - - - - { OPTIONS_DEFINITION.map(def => { - if(def.text == "Editar publicação" && post.author?.id == groupContext?.loggedData.profile.id) - return renderOption(post, def) - else if(def.text == "Editar publicação") - return null - else - return renderOption(post, def) - - }) } - - - - }
)