Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit da78a32

Browse files
committed
fix class name
1 parent b848bf0 commit da78a32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/Header/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ export default function Header({
9696
{user.nickname}
9797
{organization ? <>&nbsp;({organization.name})</> : ""}
9898
{showAccountDropdown ? (
99-
<div className={iconStyles.chevronUpG + " " + style.arrow}></div>
99+
<div className={`${iconStyles.chevronUpG} ${style.arrow}`}></div>
100100
) : (
101-
<div className={iconStyles.chevronDownG + " " + style.arrow}></div>
101+
<div className={`${iconStyles.chevronDownG} ${style.arrow}`}></div>
102102
)}
103103
{showAccountDropdown && (
104104
<ul className={style.dropdown}>

0 commit comments

Comments
 (0)