Skip to content

Commit

Permalink
[gh-#1032] remove form autoComplete off
Browse files Browse the repository at this point in the history
  • Loading branch information
khaliqgant committed Sep 29, 2023
1 parent 23b3e51 commit 5ef1319
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/webapp/src/pages/ProjectSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export default function ProjectSettings() {
</Tooltip>
</div>
{webhookEditMode && (
<form className="mt-2" onSubmit={handleWebhookbackSave} autoComplete="off">
<form className="mt-2" onSubmit={handleWebhookbackSave}>
<div className="flex">
<input
id="webhook_url"
Expand Down Expand Up @@ -440,7 +440,7 @@ export default function ProjectSettings() {
</div>
)}
{hmacEditMode && (
<form className="mt-2" onSubmit={handleHmacSave} autoComplete="off">
<form className="mt-2" onSubmit={handleHmacSave}>
<div className="flex">
<input
id="hmac_key"
Expand Down Expand Up @@ -495,7 +495,6 @@ export default function ProjectSettings() {
<form
className="mt-2"
onSubmit={handleEnvVariablesSave}
autoComplete="off"
>
{envVariables.map((envVar, index) => (
<div key={index} className="flex items-center mt-2">
Expand Down

0 comments on commit 5ef1319

Please # to comment.