diff --git a/src/components/SideNavBar.tsx b/src/components/SideNavBar.tsx
index d077f17..65ba68b 100644
--- a/src/components/SideNavBar.tsx
+++ b/src/components/SideNavBar.tsx
@@ -104,11 +104,15 @@ const SideNavBar = ({ user }: SideNavBarProps) => {
{tabs.map((tab) => {
const isLogout = tab.name === t("logout");
+ const isProfileTab = tab.href === "/private/profile";
const isActive =
!isLogout &&
- (tab.href === "/private"
+ ((tab.href === "/private"
? pathname === "/private"
- : pathname === tab.href || pathname.startsWith(`${tab.href}/`));
+ : pathname === tab.href ||
+ pathname.startsWith(`${tab.href}/`)) ||
+ (isProfileTab && pathname.startsWith("/private/organization")));
+
return (
-