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 512e76f commit 610972cCopy full SHA for 610972c
app/src/components/bottom/TableStateProps.tsx
@@ -97,16 +97,16 @@ const TableStateProps = props => {
97
98
99
//add in passed in props
100
- let propsPassed = currentComponent.passedInProps.slice();
101
- console.log("propsPassed:", propsPassed);
+
+ if (currentComponent.name !== 'App' && currentComponent.name !== 'index') {
102
+ let propsPassed = currentComponent.passedInProps?.slice();
103
104
for (let i = 0; i < propsPassed.length; i++) {
105
currentProps.push(propsPassed[i]);
106
}
107
+ }
108
109
rows = currentProps;
- console.log("currentProps on line 108: ", currentProps);
- console.log({rows});
110
111
return (
112
<div className={'state-prop-grid'}>
0 commit comments