From f0a234f97dbaeec6976023c50d2e2a8907b81ebe Mon Sep 17 00:00:00 2001 From: hamo-o Date: Wed, 5 Jun 2024 08:26:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20RadioContextProps=20=ED=83=80=EC=9E=85?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/wow-ui/src/components/RadioGroup/RadioContext.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/wow-ui/src/components/RadioGroup/RadioContext.tsx b/packages/wow-ui/src/components/RadioGroup/RadioContext.tsx index dfcde1c4..3f4ce69d 100644 --- a/packages/wow-ui/src/components/RadioGroup/RadioContext.tsx +++ b/packages/wow-ui/src/components/RadioGroup/RadioContext.tsx @@ -11,14 +11,14 @@ import { createContext } from "react"; */ export interface RadioContextProps { - name: string | undefined; - value?: string | undefined; + name: string; + value?: string; onChange?: (event: ChangeEvent) => void; disabled?: boolean; } const RadioContext = createContext({ - name: undefined, + name: "RadioGroupName", value: undefined, onChange: undefined, disabled: false,