diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ffdce292..9d85f0101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,6 +64,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug fixes +- [#238](https://github.com/alleslabs/celatone-frontend/pull/238) Fix incorrect isCurrentPage for overview page - [#235](https://github.com/alleslabs/celatone-frontend/pull/235) Fix css bugs and aesthetics improvement - [#236](https://github.com/alleslabs/celatone-frontend/pull/236) Add alphabetically sorting to JSON attach funds - [#231](https://github.com/alleslabs/celatone-frontend/pull/231) Fix double slash for endpoint, disable calling endpoint when there is no contract addr in contract details page diff --git a/src/lib/layout/navbar/index.tsx b/src/lib/layout/navbar/index.tsx index 7ae5e2614..8edaad7fe 100644 --- a/src/lib/layout/navbar/index.tsx +++ b/src/lib/layout/navbar/index.tsx @@ -33,7 +33,7 @@ const Navbar = observer(({ isExpand, setIsExpand }: NavbarProps) => { switch (slug) { // handle home page case "/": - return pathName === `${networkPath}`; + return pathName === `${networkPath}` || pathName === "/"; // handle contract list page and public project page case "/contract-list": case "/public-project":