Skip to content

Commit 28b3987

Browse files
committed
fix: merged node requirements for clients
1 parent 75a5d83 commit 28b3987

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/renderer/Presentational/AddNodeStepper/AddNodeStepperModal.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,11 @@ const AddNodeStepperModal = ({
7777
for (const [serviceId, selectOption] of Object.entries(
7878
clientSelections,
7979
)) {
80-
console.log(`${serviceId}: ${selectOption}`);
81-
const clientId = selectOption.specId;
80+
console.log(
81+
`merging reqs. serviceId, selectOption: ${serviceId}`,
82+
selectOption,
83+
);
84+
const clientId = selectOption.value;
8285
if (nodeLibrary?.[clientId]?.systemRequirements) {
8386
reqs.push(
8487
nodeLibrary[clientId].systemRequirements as SystemRequirements,

0 commit comments

Comments
 (0)