Skip to content

Commit 55ed4f3

Browse files
handle warnings
1 parent 42638ec commit 55ed4f3

File tree

1 file changed

+3
-1
lines changed
  • src/ui/layouts/stackComponents/ConfigureComponent/CreateComponent

1 file changed

+3
-1
lines changed

src/ui/layouts/stackComponents/ConfigureComponent/CreateComponent/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,8 @@ export const CreateComponent: React.FC<{ flavor: any; state: any }> = ({
559559
}
560560
}
561561
}
562-
for (const [key, value] of Object.entries(inputData)) {
562+
563+
for (const [, value] of Object.entries(inputData)) {
563564
if (typeof value === 'object') {
564565
return dispatch(
565566
showToasterAction({
@@ -569,6 +570,7 @@ export const CreateComponent: React.FC<{ flavor: any; state: any }> = ({
569570
);
570571
}
571572
}
573+
572574
const body = {
573575
user: user?.id,
574576
workspace: id,

0 commit comments

Comments
 (0)