Compare commits

..

No commits in common. "6ea0adb4ea93a99fb2a78f32a4abde0e24c34304" and "65d8330d2cdebc2d2198ad6ca12c2d5730f3872c" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ const StepTwoComponent = forwardRef((props, ref) => {
const newSpecialList = data.details.map((item) => {
const existsItem = specialList.find(specialItem => specialItem.qualificationsDetailId === item.id);
if (existsItem) {
return { ...existsItem, ...item };
return { ...item, ...existsItem };
}
return item;
});