Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepyfran committed Sep 11, 2024
1 parent 025a69f commit 4e23cda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ module.exports = {
},
},
rules: {
"@typescript-eslint/no-empty-object-type": {
allowObjectTypes: true,
},
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
Expand Down
2 changes: 1 addition & 1 deletion packages/components/player/src/player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class EchoPlayer extends LitElement {
private _renderCurrentTrack({ track }: { track: Track }) {
return html`
<h4>${track.name}</h4>
<h5>${track.mainArtist.name}</h
<h5>${track.mainArtist.name}</h5>
`;
}

Expand Down

0 comments on commit 4e23cda

Please sign in to comment.