Skip to content

Commit 7d0158a

Browse files
author
FalkWolsky
committed
Removeing unused console.logs
1 parent a0a7c4e commit 7d0158a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

client/packages/lowcoder/src/comps/controls/shapeControl.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ const IconPicker = (props: {
8181
IconType?: "OnlyAntd" | "All" | "default" | undefined;
8282
}) => {
8383
const icon = useShape(props.value);
84-
console.log(props);
84+
// console.log(props);
8585
let shapeDetails = props.value;
86-
console.log("shapeDetails ", shapeDetails);
86+
// console.log("shapeDetails ", shapeDetails);
8787

8888
return (
8989
<ShapeSelect
@@ -173,7 +173,7 @@ type ChangeModeAction = {
173173

174174
function ShapeControlView(props: { value: any }) {
175175
const { value } = props;
176-
console.log("ShapeControlView ", value);
176+
// console.log("ShapeControlView ", value);
177177
const icon = useShape(value);
178178
if (icon) {
179179
return icon.getView();

client/packages/lowcoder/src/pages/userAuth/thirdParty/thirdPartyAuth.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ function ThirdPartyLoginButton(props: {
8686
? `Sign up with ${label}`
8787
: `Sign in with ${label}`;
8888

89-
console.log('config', config);
90-
9189
return (
9290
<StyledLoginButton buttonType="normal" onClick={onLoginClick}>
9391
{config.icon && <MultiIconDisplay identifier={config.icon} width="20px" height="20px" style={{ marginRight: "20px", flexShrink: 0, color: "#000" }} />}

0 commit comments

Comments
 (0)