We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75a5d83 commit 28b3987Copy full SHA for 28b3987
src/renderer/Presentational/AddNodeStepper/AddNodeStepperModal.tsx
@@ -77,8 +77,11 @@ const AddNodeStepperModal = ({
77
for (const [serviceId, selectOption] of Object.entries(
78
clientSelections,
79
)) {
80
- console.log(`${serviceId}: ${selectOption}`);
81
- const clientId = selectOption.specId;
+ console.log(
+ `merging reqs. serviceId, selectOption: ${serviceId}`,
82
+ selectOption,
83
+ );
84
+ const clientId = selectOption.value;
85
if (nodeLibrary?.[clientId]?.systemRequirements) {
86
reqs.push(
87
nodeLibrary[clientId].systemRequirements as SystemRequirements,
0 commit comments