Xcode – RCT-Folly/folly/Optional.h:474:36 Invalid operands to binary expression ('const bool' and 'const std::nullopt_t')
The error from the title points at following lines template <class U, class V> constexpr bool operator==(const Optional<U>& a, const V& b) { return a.hasValue() && a.value() == b; } I am trying to update a react native app from…