You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(autofill): add dummy inputs to prevent browser autofill for various fields, prevent having 0 workflows in workspace (#2482)
* fix(autofill): add dummy inputs to prevent browser autofill for various fields, prevent having 0 workflows in workspace
* cleanup
* ack PR comments
* fix failing test
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/api-keys/api-keys.tsx
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/team-management/components/member-invitation-card/member-invitation-card.tsx
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -141,12 +141,37 @@ export function MemberInvitationCard({
141
141
{/* Main invitation input */}
142
142
<divclassName='flex items-start gap-2'>
143
143
<divclassName='flex-1'>
144
+
{/* Hidden decoy fields to prevent browser autofill */}
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/team-management/components/no-organization-view/no-organization-view.tsx
+42-6Lines changed: 42 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -55,16 +55,31 @@ export function NoOrganizationView({
55
55
56
56
{/* Form fields - clean layout without card */}
57
57
<divclassName='space-y-4'>
58
+
{/* Hidden decoy field to prevent browser autofill */}
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/template-profile/template-profile.tsx
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -390,11 +390,26 @@ export function TemplateProfile() {
390
390
disabled={isUploadingProfilePicture}
391
391
/>
392
392
</div>
393
+
{/* Hidden decoy field to prevent browser autofill */}
0 commit comments