Skip to content

2.6.25#146

Open
TargetMisser wants to merge 32 commits intoWIPfrom
main
Open

2.6.25#146
TargetMisser wants to merge 32 commits intoWIPfrom
main

Conversation

@TargetMisser
Copy link
Copy Markdown
Owner

What Changed

Describe the outcome of the change in a few lines.

Checklist

  • I tested the main behavior
  • I verified that typecheck passes
  • I updated any relevant documentation
  • I checked possible Android / Wear OS impact

Screenshot or Video

If the change affects UI or UX, attach something here.

Review Notes

Call out sensitive areas, open questions, or review focus points here.

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 29, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
flight-work-app Ready Ready Preview, Comment, Open in v0 Apr 29, 2026 1:42pm

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 7668750825

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

"build-tools;36.0.0" \
"platforms;android-36" \
"build-tools;37.0.0" \
"platforms;android-37.0" \
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Use valid Android platform package path in sdkmanager

The workflow installs "platforms;android-37.0", but sdkmanager expects SDK-style package IDs like "platforms;android-36" (Android docs show this exact format). Using the .0 suffix makes the package path invalid, so CI release builds can fail before Gradle runs when this step executes.

Useful? React with 👍 / 👎.


return (
<Modal visible transparent animationType="fade" onRequestClose={onDismiss}>
<Modal visible transparent animationType="fade" onRequestClose={downloadState === 'downloading' ? undefined : onDismiss}>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep Modal onRequestClose defined during downloads

When downloadState === 'downloading', onRequestClose is set to undefined, but React Native requires this callback on Android while a Modal is open (hardware back handling depends on it). In this state, pressing back can trigger runtime warnings/errors instead of a controlled no-op, so the modal should keep a defined handler and gate dismissal inside that function.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant