Conversation
|
🚀 Expo preview is ready!
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the volunteer opportunity flow by improving link handling in Markdown descriptions, adjusting sign-up button behavior when events are full, refining time-slot selection behavior, and adding zoom support to the posters/programs gallery.
Changes:
- Add explicit Markdown link handling and visually disable the Sign Up button when full/already submitted.
- Update form-selection logic and time-slot range picker behavior.
- Add zoomable posters gallery support (new dependency + gesture handler root wrapper).
Reviewed changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/screens/VolunteerOpportunityScreen.js | Adds Markdown onLinkPress handling; styles Sign Up button as disabled when full/submitted. |
| src/screens/VolunteerFormScreen.js | Changes fuzzy matching behavior for selecting a custom form; removes explicit unknown-form error path. |
| src/components/TimeSlot.js | Adjusts range-selection picker behavior to reopen for end-time selection. |
| src/components/TextField.js | Tweaks input height. |
| src/components/PostersButton.js | Adds zoom support to poster modal/gallery; optimizes FlatList rendering. |
| src/components/NextButton.js | Adds disabled styling support. |
| App.js | Wraps app in GestureHandlerRootView for gesture/zoom support. |
| package.json | Adds react-native-reanimated-zoom dependency. |
| package-lock.json | Locks react-native-reanimated-zoom dependency. |
| jsconfig.json | Adjusts JS type-checking compiler options. |
Comments suppressed due to low confidence (1)
src/screens/VolunteerOpportunityScreen.js:108
onLinkPresscallsLinking.openURL(url)without handling rejection, which can produce unhandled promise rejections for unsupported/malformed URLs. Prefer using the existingopenURLhelper fromsrc/utils(it already catches and shows a user-facing Alert) or add a.catch(...)here.
</Pressable>
</View>
</View>
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Agent-Logs-Url: https://github.com/AudacityMusic/signup/sessions/f3f0ea08-1beb-4cc5-98dd-4483dcd3678f Co-authored-by: Heliophist <172997896+Heliophist@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note: The jsconfig was also edited since the TS errors make vscode go crazy about issues across the codebase