Skip to content

Commit

Permalink
Fix npm lint errors (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickFfm93 authored Jul 18, 2024
1 parent 556b673 commit 1df8411
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/playback/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ export class Player {
}
*/

play() {
this.#backend.play()
async play() {
await this.#backend.play()
}

/*
Expand Down
2 changes: 1 addition & 1 deletion web/src/layouts/global.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if (frontmatter && frontmatter.title) title = frontmatter.title
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/layout/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title ? `${title} - ` : ""}Media over QUIC</title>
<title>{title ? `${title} - Media over QUIC` : "Media over QUIC"}</title>
</head>
<body>
<div class="flex flex-col md:flex-row gap-8 md:p-8 p-4">
Expand Down

0 comments on commit 1df8411

Please sign in to comment.