Skip to content

Commit

Permalink
Fix: Only show Translate Navigation when groups off (#3713)
Browse files Browse the repository at this point in the history
Only show navigation when groups off
  • Loading branch information
dsamojlenko authored May 30, 2024
1 parent d52afec commit 8f1c5e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default async function Page({ params: { id } }: { params: { id: string }

return (
<>
{conditionalLogic && <EditNavigation id={id} />}
{!conditionalLogic && <EditNavigation id={id} />}
{conditionalLogic ? <TranslateWithGroups /> : <Translate />}
</>
);
Expand Down

0 comments on commit 8f1c5e5

Please sign in to comment.