diff --git a/team-ui/src/components/Layout.tsx b/team-ui/src/components/Layout.tsx
index 9fa076a..e952a66 100644
--- a/team-ui/src/components/Layout.tsx
+++ b/team-ui/src/components/Layout.tsx
@@ -8,6 +8,7 @@ export function Layout() {
const location = useLocation();
const [pendingCount, setPendingCount] = useState(0);
const onDashboard = location.pathname === "/dashboard";
+ const onReview = location.pathname === "/review";
useEffect(() => {
if (onDashboard) return;
@@ -41,8 +42,12 @@ export function Layout() {
}
return (
-
-