Skip to content

Commit

Permalink
Fix boolean logic
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Feb 19, 2024
1 parent ff61139 commit b018e7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected function generate(): void
$item = NavItem::fromRoute($route);
$group = $item->getGroup();

if ($groups && $group === null) {
if ($groups && $group !== null) {
// Todo: Add item
}

Expand Down

0 comments on commit b018e7d

Please sign in to comment.