From b35dc90da85d9669dda1440dc8b4e78e5fcb767b Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 30 Sep 2024 16:00:26 +0530 Subject: [PATCH] chore: lint --- src/components/molecules/NavBar.tsx | 140 ++++++++++++++-------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/src/components/molecules/NavBar.tsx b/src/components/molecules/NavBar.tsx index be749d63..d2c39cd1 100644 --- a/src/components/molecules/NavBar.tsx +++ b/src/components/molecules/NavBar.tsx @@ -54,78 +54,78 @@ export const NavBar = ({ newRecording, recordingName, isRecording }: NavBarProps return ( + { + user !== null ? ( + <> +
+ +
Maxun
+
+
+ + {isRecording ? 'NEW' : 'RECORD'} + { - user !== null ? ( - <> -
- -
Maxun
-
-
- - {isRecording ? 'NEW' : 'RECORD'} - - { - recordingLength > 0 - ? - : null - } - {isRecording ? - : null} - -
- - ) : "" + recordingLength > 0 + ? + : null } + {isRecording ? + : null} + +
+ + ) : "" + }
);