Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloszFilimowski committed Sep 25, 2024
1 parent 17e26f6 commit 3a04736
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ peer token for new room:

```ts
const response = await fetch(
`https://fishjam.io/api/v1/connect/*YOUR_ID*/room-manager/*roomName*/users/*username*`
`https://fishjam.io/api/v1/connect/*YOUR_ID*/room-manager/*roomName*/users/*username*`,
);

const { url, peerToken } = await response.json();
Expand All @@ -54,7 +54,7 @@ function StartStreamingButton({ roomName, userName }) {

const startStreaming = useCallback(async () => {
const response = await fetch(
`https://fishjam.io/api/v1/connect/*YOUR_ID*/room-manager/*roomName*/users/*username*`
`https://fishjam.io/api/v1/connect/*YOUR_ID*/room-manager/*roomName*/users/*username*`,
);
const { url, peerToken } = await response.json();

Expand Down Expand Up @@ -82,7 +82,7 @@ function Component() {
const { peers } = usePeers();

const videoTracks = peers.flatMap((peer) =>
peer.tracks.filter((track) => track.type === "Video" && track.isActive)
peer.tracks.filter((track) => track.type === "Video" && track.isActive),
);

return (
Expand Down

0 comments on commit 3a04736

Please sign in to comment.