diff --git a/src/components/common/StatusRadio.tsx b/src/components/common/StatusRadio.tsx index e12812f9..9545f62f 100644 --- a/src/components/common/StatusRadio.tsx +++ b/src/components/common/StatusRadio.tsx @@ -22,7 +22,7 @@ export default function StatusRadio({ statusFieldName, statusList }: StatusRadio
{statusList.map((status) => { const { statusId, statusName, colorCode } = status; - const isChecked = Number(watch('statusId')) === statusId; + const isChecked = Number(watch(statusFieldName)) === statusId; return (