Devon Koch
Devon Koch
This also solved it for me: ``` const [dates, setDates] = useState({ startDate: null, endDate: null, displayedDate: moment(), }) const handleDateChange = (newDates) => { setDates({ ...dates, ...newDates }) }...
https://stackoverflow.com/questions/78121217/build-error-on-xcode-15-3-called-object-type-facebookflippersocketcertifi adding this fixed it for me
I've been able to get a build running in iOS in Expo, iOS Simulator, and iOS App Store build by adding the following to package.json as a dependency `"@expo/metro-config": "^0.1.60",`...
The fix was simply updating to upgrading to Expo 42.0.0 for me. Working on both iOS and Android
Update - after going on vacation, my simple "upgrade to expo 42.0.0" quickfix stopped working so I had to get a little creative. As others have mentioned, the issue lies...