Last active
March 2, 2021 16:27
-
-
Save alex-boom/179da056f25dd3ffb06ca4a66975a244 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// update - useState - useEffect | |
const defaultRadioVal = !loadingUser && | |
userMetaFields.company_member_flag && | |
userMetaFields.company_member_flag.meta_value || '0'; | |
const [ radioValue, setRadioValue ] = useState(defaultRadioVal); | |
useEffect(() => { | |
setRadioValue(defaultRadioVal) | |
}, [ defaultRadioVal ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment