Procházet zdrojové kódy

Update ref handling

Remove fallback ref.
master
TheoryOfNekomata před 1 rokem
rodič
revize
61f8c99569
1 změnil soubory, kde provedl 1 přidání a 2 odebrání
  1. +1
    -2
      categories/formatted/react/src/components/PhoneNumberInput/index.tsx

+ 1
- 2
categories/formatted/react/src/components/PhoneNumberInput/index.tsx Zobrazit soubor

@@ -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;


Načítá se…
Zrušit
Uložit