Skip to content

Commit

Permalink
fix: build before publish
Browse files Browse the repository at this point in the history
  • Loading branch information
timephy committed Aug 14, 2024
1 parent 4513193 commit cfa82fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/tui-components-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@timephy/tui-components-svelte",
"version": "0.0.8",
"version": "0.0.9",
"description": "",
"homepage": "https://github.com/timephy/tui/tree/main/tui-components-svelte#readme",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export class Peer extends PeerConnection implements Display {
debug: false,
noiseSuppression: false,
volumeGate: null,
gain: this.options.storageId ? LS_PEER_GAINS.value.get(this.options.storageId) ?? 1 : 1,
gain: this.options.storageId
? (LS_PEER_GAINS.value.get(this.options.storageId) ?? 1)
: 1,
playback: true,
})

Expand Down

0 comments on commit cfa82fa

Please sign in to comment.