Skip to content

Comments

Fixes 32#2007

Merged
aisraelov merged 131 commits intodevfrom
fixes-32
Feb 18, 2026
Merged

Fixes 32#2007
aisraelov merged 131 commits intodevfrom
fixes-32

Conversation

@fossephate
Copy link
Contributor

No description provided.

@fossephate fossephate requested a review from a team as a code owner February 5, 2026 23:51
@github-actions
Copy link

github-actions bot commented Feb 5, 2026

📋 PR Review Helper

📱 Mobile App Build

Ready to test! (commit fd523e4)

📥 Download APK

🕶️ ASG Client Build

Ready to test! (commit 2b15035)

📥 Download ASG APK


🔀 Test Locally

gh pr checkout 2007

@coderabbitai
Copy link

coderabbitai bot commented Feb 5, 2026

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fixes-32

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Feb 5, 2026

Deploying prod-augmentos-account with  Cloudflare Pages  Cloudflare Pages

Latest commit: f79a095
Status: ✅  Deploy successful!
Preview URL: https://713c443b.augmentos-e84.pages.dev
Branch Preview URL: https://fixes-32.augmentos-e84.pages.dev

View logs

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Feb 5, 2026

Deploying mentra-live-ota-site with  Cloudflare Pages  Cloudflare Pages

Latest commit: f79a095
Status: ✅  Deploy successful!
Preview URL: https://67ffa9d5.mentra-live-ota-site.pages.dev
Branch Preview URL: https://fixes-32.mentra-live-ota-site.pages.dev

View logs

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Feb 6, 2026

Deploying mentra-store-dev with  Cloudflare Pages  Cloudflare Pages

Latest commit: f79a095
Status: ✅  Deploy successful!
Preview URL: https://1b38c920.augmentos-appstore-2.pages.dev
Branch Preview URL: https://fixes-32.augmentos-appstore-2.pages.dev

View logs

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Feb 6, 2026

Deploying dev-augmentos-console with  Cloudflare Pages  Cloudflare Pages

Latest commit: f79a095
Status: ✅  Deploy successful!
Preview URL: https://0bc37157.dev-augmentos-console.pages.dev
Branch Preview URL: https://fixes-32.dev-augmentos-console.pages.dev

View logs

@aisraelov
Copy link
Member

@codex review

Copy link

@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: de3dd84328

ℹ️ 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".

Comment on lines +525 to +529
const unsubscribe = navigation.addListener("beforeRemove", (e) => {
// Fires when back gesture starts or back button is pressed
console.log("navigating back")
backFn?.()
})

Choose a reason for hiding this comment

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

P1 Badge Prevent duplicate back pops in iOS beforeRemove hook

In focusEffectPreventBack, the iOS beforeRemove listener calls backFn but never calls e.preventDefault(), so the original back action still proceeds; on screens where backFn itself calls goBack() (for example via MiniAppDualButtonHeader), a single swipe-back can trigger two pops and skip an extra screen. This is user-facing on iOS whenever that callback performs navigation.

Useful? React with 👍 / 👎.

Comment on lines 55 to 58
const handleWebViewMessage = (event: any) => {
const data = event.nativeEvent.data
miniComms.handleWebViewMessage(data)
// miniComms.handleRawMessageFromMiniApp(packageName, data)
}

Choose a reason for hiding this comment

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

P2 Badge Forward local mini-app WebView messages to MiniComms

handleWebViewMessage reads event.nativeEvent.data but no longer forwards it, so messages posted by local mini apps never reach the native message bus. That breaks mini-app interactions that depend on bridge calls (e.g., core_fn/request events), because the payload is silently dropped at the WebView boundary.

Useful? React with 👍 / 👎.

Comment on lines 59 to +60
// Handle specific message types
this.handleMessage(message)
// this.handleMessageFromMiniApp(packageName, message)

Choose a reason for hiding this comment

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

P2 Badge Dispatch parsed mini-app messages to handlers

handleRawMessageFromMiniApp successfully parses incoming JSON but never invokes handleMessageFromMiniApp, so every inbound message is only logged and then discarded. Even with WebView forwarding enabled, actions like core_fn and other message types will never execute.

Useful? React with 👍 / 👎.

@aisraelov aisraelov merged commit 2b41b54 into dev Feb 18, 2026
9 of 10 checks passed
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.

2 participants