Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR aims to allow patch updates for dependencies by introducing caret (^) version specifiers.
- Changed
@react-native-async-storage/async-storageto use a caret specifier. - Ensures dependencies can receive non-breaking updates automatically.
Comments suppressed due to low confidence (1)
package.json:37
- Consider adding a caret prefix to this dependency (e.g.,
"^7.2.0") to allow patch updates, matching the intent described in the PR and the pattern used for other dependencies.
"@react-navigation/bottom-tabs": "7.2.0",
There was a problem hiding this comment.
i don't know if this is related to this issue, but in the tab, in the las component the app breaks, i tried that from main and seems to have the same problem. i'm just wondering if you have the same problem or not?
GMT20250616-050726_Clip_Miguel.Quintana.s.Clip.06_15_2025.mp4
|
@MiguelQuintana1 I was having the same issue on main, but don't worry about it since it's fixed in PR #150 |
The calendar rework is an independent task that irrelevant to the current breaking change. Please approve the PR so we can fix the issues with main. |
Summary & Changes 📃
Noticed the issue occurring here in this commit 4f63c1b was that the specific version of natives was stopping the main app features page from loading. You can see the screen shot in my comment on the commit.
To fix this change we have to allow for patch updates of the @react-navigation/natives dependency. Not sure exactly which version of the dependency is needed but that doesn't matter if we leave the caret.
How to Test 🧪