Skip to content

Commit dc17b96

Browse files
committed
autofill fixes
1 parent 6fed019 commit dc17b96

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/components/add-connector-modal/add-connector-modal.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ export function AddConnectorModal({ open, onOpenChange, knowledgeBaseId }: AddCo
236236
</Label>
237237
<Input
238238
type='password'
239+
autoComplete='new-password'
239240
value={apiKeyValue}
240241
onChange={(e) => setApiKeyValue(e.target.value)}
241242
placeholder={

apps/sim/app/workspace/[workspaceId]/logs/components/logs-toolbar/components/notifications/notifications.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,7 @@ export const NotificationSettings = memo(function NotificationSettings({
630630
<EmcnInput
631631
type='url'
632632
placeholder='https://your-app.com/webhook'
633+
autoComplete='off'
633634
value={formData.webhookUrl}
634635
onChange={(e) => {
635636
setFormData({ ...formData, webhookUrl: e.target.value })
@@ -645,6 +646,7 @@ export const NotificationSettings = memo(function NotificationSettings({
645646
<EmcnInput
646647
type='password'
647648
placeholder='Webhook secret for signature verification'
649+
autoComplete='new-password'
648650
value={formData.webhookSecret}
649651
onChange={(e) => setFormData({ ...formData, webhookSecret: e.target.value })}
650652
/>

0 commit comments

Comments
 (0)