Skip to content

Commit

Permalink
Merge pull request #14 from felipefrbr/main
Browse files Browse the repository at this point in the history
fix: corrige o link para o filtro de todos os eventos
  • Loading branch information
marcopollivier authored Aug 16, 2024
2 parents c1f5fdc + 36b8ce3 commit b63c42d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function Header({ user, currentPage, tags, cities, onFilterChange
{navigation.map((item) => (
<a
key={item.name}
href={item.tag === "" ? "" : `?tags=${item.tag}`}
href={item.tag === "" ? "/" : `?tags=${item.tag}`}
className={classNames(
item.tag === currentPage ? 'bg-white text-black shadow-md' : 'text-gray-400 hover:bg-gray-200 hover:text-black',
'rounded-full px-3 py-1 text-sm font-medium'
Expand Down

0 comments on commit b63c42d

Please sign in to comment.