🐛 fix(extraSidebarComponent): fix Save button color when isPending is true
The Save button was not being displayed correctly when the isPending variable was true. The fix changes the order of the classes to correctly display the button as intended.
This commit is contained in:
parent
7d897929b3
commit
d3d7392104
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ export default function ExtraSidebar() {
|
|||
>
|
||||
<Save
|
||||
className={
|
||||
"w-5 h-5" + (isPending ? " text-muted-foreground" : " ")
|
||||
"w-5 h-5" + (isPending ? " " : " text-muted-foreground")
|
||||
}
|
||||
></Save>
|
||||
</button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue