fantonangeli commented on code in PR #2853:
URL: 
https://github.com/apache/incubator-kie-tools/pull/2853#discussion_r1941237893


##########
packages/online-editor/src/accounts/git/ConnectToGitSection.tsx:
##########
@@ -290,19 +291,19 @@ export function ConnectToGitSection(props: { 
authProvider: GitAuthProvider }) {
                     name="usernameInput"
                     aria-describedby="username-text-input-helper"
                     
placeholder={i18n.connectToGitModal[props.authProvider.type].form.username?.placeHolder}
-                    onChange={(v) => setUsernameInput(v.trim())}
+                    onChange={(_event, v) => setUsernameInput(v.trim())}
                   />
                 </FormGroup>
               ),
               default: <></>,
             })}
             <FormGroup
               isRequired={true}
-              helperTextIcon={validation.helperTextIcon}
-              helperTextInvalidIcon={validation.helperTextInvalidIcon}
-              helperTextInvalid={validation.helperTextInvalid}
-              helperText={validation.helperText}
-              validated={validation.validated}
+              // helperTextIcon={validation.helperTextIcon}

Review Comment:
   Can you please remove these lines



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to