Skip to content

fix: type AvAudioSessionChannel.channelLabel as number#277

Merged
tien merged 2 commits intofeat/fabric-viewfrom
copilot/sub-pr-275
Mar 21, 2026
Merged

fix: type AvAudioSessionChannel.channelLabel as number#277
tien merged 2 commits intofeat/fabric-viewfrom
copilot/sub-pr-275

Conversation

Copy link
Copy Markdown

Copilot AI commented Mar 21, 2026

channelLabel was typed as string, but the native iOS side emits it as a numeric AVAudioChannelLabel via @(channel.channelLabel), causing a type mismatch for TS consumers.

Change

  • AvAudioSessionChannel.channelLabel: stringnumber
// before
export type AvAudioSessionChannel = {
  channelLabel: string;
};

// after
export type AvAudioSessionChannel = {
  channelLabel: number;
};

💬 Send tasks to Copilot coding agent from Slack and Teams to turn conversations into code. Copilot posts an update in your thread when it's finished.

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Mar 21, 2026

⚠️ No Changeset found

Latest commit: b22c081

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copilot AI changed the title [WIP] Apply feedback on React Native architecture support PR fix: type AvAudioSessionChannel.channelLabel as number Mar 21, 2026
@tien tien marked this pull request as ready for review March 21, 2026 03:39
Copilot AI requested a review from tien March 21, 2026 03:39
Copilot finished work on behalf of tien March 21, 2026 03:39
@tien tien merged commit cf81895 into feat/fabric-view Mar 21, 2026
@tien tien deleted the copilot/sub-pr-275 branch March 21, 2026 03:39
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