From 02bc13e70b5be9c138fb3ac39caeb02c9fb10ae0 Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 07:00:22 +0000 Subject: [PATCH] fix(FLEETMDM-010-2): Brave icon reuses the same uniqueId-generated variable name for two distinct linearGradient defs, causing duplicate 'id' attributes in the DOM --- frontend/pages/SoftwarePage/components/icons/Brave.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/pages/SoftwarePage/components/icons/Brave.tsx b/frontend/pages/SoftwarePage/components/icons/Brave.tsx index ea780aedd9f..0678d448406 100644 --- a/frontend/pages/SoftwarePage/components/icons/Brave.tsx +++ b/frontend/pages/SoftwarePage/components/icons/Brave.tsx @@ -5,6 +5,7 @@ import type { SVGProps } from "react"; const Brave = (props: SVGProps) => { const clipPathId = uniqueId("clip-path-"); const fillPathId = uniqueId("fill-path-"); + const fillPathId2 = uniqueId("fill-path-"); return ( @@ -23,7 +24,7 @@ const Brave = (props: SVGProps) => { /> @@ -41,7 +42,7 @@ const Brave = (props: SVGProps) => {