(e)
| 104 | let {focusWithinProps} = useFocusWithin({ |
| 105 | ...props, |
| 106 | onFocusWithin(e) { |
| 107 | valueOnFocus.current = state.value; |
| 108 | props.onFocus?.(e); |
| 109 | }, |
| 110 | onBlurWithin: e => { |
| 111 | state.confirmPlaceholder(); |
| 112 | if (state.value !== valueOnFocus.current) { |
no test coverage detected