Skip to content

Commit

Permalink
fix(NavLinkSidebar): use TextComponent, not TextWrapper (#2912)
Browse files Browse the repository at this point in the history
  • Loading branch information
rxri authored Mar 21, 2024
1 parent 2a005de commit 3cf0568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsHelper/spicetifyWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1844,7 +1844,7 @@ const NavLinkSidebar = ({ appProper, appRoutePath, createIcon, isActive }) => {
"aria-label": appProper
},
createIcon(),
!isSidebarCollapsed && Spicetify.React.createElement(Spicetify.ReactComponent.TextWrapper, { variant: "bodyMediumBold" }, appProper)
!isSidebarCollapsed && Spicetify.React.createElement(Spicetify.ReactComponent.TextComponent, { variant: "bodyMediumBold" }, appProper)
)
)
);
Expand Down

0 comments on commit 3cf0568

Please sign in to comment.