Skip to content

Commit eab0320

Browse files
committed
build fail fixes
1 parent bc0fd02 commit eab0320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Navbar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const Navbar = ({ onClose, ...rest }: NavbarProps): React.ReactElement => {
5959
);
6060

6161
const Greeting = (): React.ReactElement => {
62-
if (!data) return null;
62+
if (!data) return <></>;
6363

6464
const names = data?.name.split(' ');
6565
const name = names[0];

0 commit comments

Comments
 (0)