Skip to content

Commit

Permalink
Run prettier on codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Sep 11, 2024
1 parent a4e6c65 commit d7a8924
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions client/src/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ function init(currentScriptSrc, playerClass) {
typeof window !== "object"
? null
: typeof window.TextDecoder !== "function"
? null
: window.TextDecoder;
? null
: window.TextDecoder;
const escape = window.escape;

/**
Expand Down
4 changes: 2 additions & 2 deletions inspector/src/modules/request_history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export default function generateRequestHistoryModule(
mediaType === "audio"
? STATE_PROPS.AUDIO_REQUEST_HISTORY
: mediaType === "video"
? STATE_PROPS.VIDEO_REQUEST_HISTORY
: STATE_PROPS.TEXT_REQUEST_HISTORY;
? STATE_PROPS.VIDEO_REQUEST_HISTORY
: STATE_PROPS.TEXT_REQUEST_HISTORY;

let pendingRequestInfo: {
element: HTMLElement;
Expand Down
2 changes: 1 addition & 1 deletion rx-paired.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function startRxPaired({
} = {}) {
const noPassword = typeof password !== "string" || password.length === 0;
const serverOpts = {
inspectorPort: noInspector ? -1 : inspectorPort ?? DEFAULT_INSPECTOR_PORT,
inspectorPort: noInspector ? -1 : (inspectorPort ?? DEFAULT_INSPECTOR_PORT),
devicePort: devicePort ?? DEFAULT_DEVICE_PORT,
shouldCreateLogFiles: true,
password: noPassword ? null : password,
Expand Down

0 comments on commit d7a8924

Please sign in to comment.