From 1851e95930a30c4e21b8513f9edec89349af1f91 Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Thu, 26 Feb 2026 13:11:22 +0100 Subject: [PATCH] Fix Radio displayName incorrectly set to 'RadioGroup' Signed-off-by: Johan Persson --- packages/ui/src/components/RadioGroup/RadioGroup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/components/RadioGroup/RadioGroup.tsx b/packages/ui/src/components/RadioGroup/RadioGroup.tsx index f84f71849a..91796b8984 100644 --- a/packages/ui/src/components/RadioGroup/RadioGroup.tsx +++ b/packages/ui/src/components/RadioGroup/RadioGroup.tsx @@ -79,4 +79,4 @@ export const Radio = forwardRef((props, ref) => { ); }); -RadioGroup.displayName = 'RadioGroup'; +Radio.displayName = 'Radio';