-
Notifications
You must be signed in to change notification settings - Fork 85
Closed
Description
Context
I just migrated 2 libs in my project :
- react-dsfr : 0.54.0 => 0.57.4
- tss-react : 4.5.2 => 4.7.4
Then I discovered these regression
Before
After
Here is the code
<Header
brandTop={brandTop}
serviceTitle={title}
homeLinkProps={homeLinkProps}
quickAccessItems={[
{
iconId: "fr-icon-account-circle-line",
linkProps: {
href: "#",
className: classes.disabled,
},
text: "Me connecter",
},
{
iconId: "ri-chat-3-line",
linkProps: {
href: feedbackLink || "#",
target: "_self",
},
text: "Soumettre mes retours",
},
{
iconId: "ri-mail-line",
linkProps: {
href: `mailto:${contactMail}`,
},
text: "Nous contacter",
},
]}
serviceTagline="Prototype - Version1 - 2023"
/>Solution path ?
I replaced Remix icons by dsfr icons, and it works backs.
With this code
{
iconId: "fr-icon-account-circle-line",
linkProps: {
href: feedbackLink || "#",
target: "_self",
}Metadata
Metadata
Assignees
Labels
No labels


