Skip to content

Commit

Permalink
releasef fix the null specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Apr 20, 2024
1 parent 280f287 commit 70a8b5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const Header = () => {
activity,
bracket,
});
if (specs !== undefined) {
if (specs !== undefined && specs !== null) {
newPath = newPath + "?specs=" + specs;
}
navigate(newPath);
Expand Down

0 comments on commit 70a8b5a

Please sign in to comment.