소스 검색

Update ref handling

Remove fallback ref.
master
부모
커밋
61f8c99569
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -2
      categories/formatted/react/src/components/PhoneNumberInput/index.tsx

+ 1
- 2
categories/formatted/react/src/components/PhoneNumberInput/index.tsx 파일 보기

@@ -83,7 +83,6 @@ export const PhoneNumberInput = React.forwardRef<
const defaultId = React.useId();
const id = idProp ?? defaultId;
const defaultRef = React.useRef<PhoneNumberInputDerivedElement>(null);
const ref = forwardedRef ?? defaultRef;

React.useEffect(() => {
const { current: currentRaw } = defaultRef;
@@ -116,7 +115,7 @@ export const PhoneNumberInput = React.forwardRef<
}, [forwardedRef, defaultRef]);

const handlePhoneInputChange = (phoneNumberValue: Value) => {
if (!(typeof ref === 'object' && ref)) {
if (!(typeof defaultRef === 'object' && defaultRef)) {
return;
}
const { current: input } = defaultRef;


불러오는 중...
취소
저장