I figured out the issue I was facing on iOS, and it was caused by the new architecture being enabled by default with React Native. Apparently, it creates compatibility issues with certain modules, especially those related to Hermes or other specific configurations.
To resolve this, I had to disable the new architecture on iOS by using the following command:
RCT_NEW_ARCH_ENABLED=0 pod install
After running this command, everything worked perfectly again. If anyone else is having the same issue, give this a try! It really solved the problem for me.🆗