From 617444e3b92363e455781395e85c6288fa88a45b Mon Sep 17 00:00:00 2001 From: Sergiy Date: Tue, 20 Aug 2024 14:46:08 +0300 Subject: [PATCH] OV-11: + conditional rendering --- frontend/src/app/app.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/app.tsx b/frontend/src/app/app.tsx index f7420ca51..309b4baca 100644 --- a/frontend/src/app/app.tsx +++ b/frontend/src/app/app.tsx @@ -31,7 +31,11 @@ const App: React.FC = () => { return ( <> -
+ {pathname === AppRoute.SIGN_UP || + pathname === AppRoute.SIGN_IN ? null : ( +
+ )} + logo