Skip to content

Commit 9a349d3

Browse files
committed
refactor: navbar classname 수정
1 parent bfc1d6f commit 9a349d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/common/Navbar/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ interface NavbarProps extends PropsWithChildren {
99
}
1010

1111
const Navbar = ({ children, className }: NavbarProps) => {
12-
return <div className={(classNames(styles.Navbar), className)}>{children}</div>;
12+
return <div className={classNames(styles.Navbar, className)}>{children}</div>;
1313
};
1414

1515
Navbar.LeftButton = ({

0 commit comments

Comments
 (0)