mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
15fae6cb60
Improve pairing reliability and UX by letting users choose among scanned hosts with health checks and cleaner row styling while shrinking QR payloads. Handle iOS call-time audio session conflicts more gracefully with user-friendly messaging and lower-noise logs.
23 lines
654 B
TypeScript
23 lines
654 B
TypeScript
import React from "react"
|
|
import { Slot } from "expo-router"
|
|
import { LogBox } from "react-native"
|
|
import {
|
|
configureNotificationBehavior,
|
|
registerBackgroundNotificationTask,
|
|
} from "@/notifications/monitoring-notifications"
|
|
|
|
// Suppress known non-actionable warnings from third-party libs.
|
|
LogBox.ignoreLogs([
|
|
"RecordingNotificationManager is not implemented on iOS",
|
|
"`transcribeRealtime` is deprecated, use `RealtimeTranscriber` instead",
|
|
"Parsed error meta:",
|
|
"Session activation failed",
|
|
])
|
|
|
|
configureNotificationBehavior()
|
|
registerBackgroundNotificationTask().catch(() => {})
|
|
|
|
export default function RootLayout() {
|
|
return <Slot />
|
|
}
|