Compare commits
No commits in common. "6ea0adb4ea93a99fb2a78f32a4abde0e24c34304" and "65d8330d2cdebc2d2198ad6ca12c2d5730f3872c" have entirely different histories.
6ea0adb4ea
...
65d8330d2c
|
|
@ -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;
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue