Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidliu committed Aug 15, 2024
1 parent 9ffdd6f commit aeb3ff1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/RTCAudioSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export default class RTCAudioSession {
*/
static audioSessionDidActivate() {
// Only valid for iOS
if (Platform.OS === "ios") {
WebRTCModule.audioSessionDidActivate()
if (Platform.OS === 'ios') {
WebRTCModule.audioSessionDidActivate();
}
}

Expand All @@ -18,8 +18,8 @@ export default class RTCAudioSession {
*/
static audioSessionDidDeactivate() {
// Only valid for iOS
if (Platform.OS === "ios") {
WebRTCModule.audioSessionDidDeactivate()
if (Platform.OS === 'ios') {
WebRTCModule.audioSessionDidDeactivate();
}
}
}

0 comments on commit aeb3ff1

Please sign in to comment.