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 42638ec commit 55ed4f3Copy full SHA for 55ed4f3
src/ui/layouts/stackComponents/ConfigureComponent/CreateComponent/index.tsx
@@ -559,7 +559,8 @@ export const CreateComponent: React.FC<{ flavor: any; state: any }> = ({
559
}
560
561
562
- for (const [key, value] of Object.entries(inputData)) {
+
563
+ for (const [, value] of Object.entries(inputData)) {
564
if (typeof value === 'object') {
565
return dispatch(
566
showToasterAction({
@@ -569,6 +570,7 @@ export const CreateComponent: React.FC<{ flavor: any; state: any }> = ({
569
570
);
571
572
573
574
const body = {
575
user: user?.id,
576
workspace: id,
0 commit comments