summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-10-13 16:50:00 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-10-17 15:25:00 +0200
commitf88c7fac988c8be12b5c7e093957f03e23046bf6 (patch)
treec5568d7c90b266fff608b8d986f46106ca3a32a6
parent924f9c4e04742aa5adec92d21aaddb264c89164a (diff)
downloadmullvadvpn-f88c7fac988c8be12b5c7e093957f03e23046bf6.tar.xz
mullvadvpn-f88c7fac988c8be12b5c7e093957f03e23046bf6.zip
Fix missing key for fragment
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/lib/html-formatter.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/lib/html-formatter.tsx b/desktop/packages/mullvad-vpn/src/renderer/lib/html-formatter.tsx
index 0766a59bd5..f0a0457eb0 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/lib/html-formatter.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/lib/html-formatter.tsx
@@ -56,7 +56,7 @@ export function formatHtml(inputString: string): React.ReactElement {
});
if (formattedString.length === 0) {
- formattedString.push(<>{inputString}</>);
+ formattedString.push(<React.Fragment key={inputString}>{inputString}</React.Fragment>);
}
return <>{formattedString}</>;