Skip to content

Commit e1c3741

Browse files
committed
fix: prevent direct checkbox interaction to ensure consistent provider selection behavior
Clicking directly on the checkbox vs the label was causing inconsistent selection logic due to event handling order. By disabling pointer events on checkboxes, all clicks now flow through the label handler consistently.
1 parent 22cb7b5 commit e1c3741

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/web/src/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -671,6 +671,7 @@ dialog {
671671
height: 1rem;
672672
cursor: pointer;
673673
accent-color: var(--color-brand);
674+
pointer-events: none;
674675
}
675676

676677
.provider-icon {

0 commit comments

Comments
 (0)