Skip to content

Commit d002c4f

Browse files
committed
remove console logs
1 parent c67979f commit d002c4f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/dev/s2-docs/src/VisualExampleClient.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,13 @@ export function VisualExampleClient({component, name, importSource, controls, ch
110110
searchParams.set('exampleType', String(exampleType));
111111
}
112112

113-
console.log('props', props);
114113
for (let prop in props) {
115114
let value = props[prop];
116115
if (
117116
value != null &&
118117
controls[prop] != null &&
119118
(controls[prop].default == null || value !== controls[prop].default)
120119
) {
121-
console.log('setting search param', prop, value);
122120
searchParams.set(prop, JSON.stringify(value));
123121
}
124122
}

0 commit comments

Comments
 (0)