autofill fixes

This commit is contained in:
waleed
2026-03-11 04:56:31 -07:00
parent 6fed0195fd
commit dc17b9642f
2 changed files with 3 additions and 0 deletions

View File

@@ -236,6 +236,7 @@ export function AddConnectorModal({ open, onOpenChange, knowledgeBaseId }: AddCo
</Label>
<Input
type='password'
autoComplete='new-password'
value={apiKeyValue}
onChange={(e) => setApiKeyValue(e.target.value)}
placeholder={

View File

@@ -630,6 +630,7 @@ export const NotificationSettings = memo(function NotificationSettings({
<EmcnInput
type='url'
placeholder='https://your-app.com/webhook'
autoComplete='off'
value={formData.webhookUrl}
onChange={(e) => {
setFormData({ ...formData, webhookUrl: e.target.value })
@@ -645,6 +646,7 @@ export const NotificationSettings = memo(function NotificationSettings({
<EmcnInput
type='password'
placeholder='Webhook secret for signature verification'
autoComplete='new-password'
value={formData.webhookSecret}
onChange={(e) => setFormData({ ...formData, webhookSecret: e.target.value })}
/>