Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
irdkwmnsb committed Apr 18, 2024
1 parent 30f3a43 commit af67f6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/frontend/overlay/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
// "plugin:@typescript-eslint/eslint-recommended",
// "plugin:@typescript-eslint/recommended"
],
"settings": {
Expand Down Expand Up @@ -58,9 +59,10 @@ module.exports = {
"warn",
"always"
],
"no-unused-vars": [
"warn"
],
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
// "no-unused-vars": [
// "warn"
// ],
"react/prop-types": [
"off"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const TeamM2tsVideoWrapper = ({ url, setIsLoaded }) => {
type: "mpegts",
isLive: true,
url: url,
muted: !queryParams.has("teamview_audio"),
// muted: !queryParams.has("teamview_audio"),
});
player.attachMediaElement(videoRef.current);
player.load();
Expand Down

0 comments on commit af67f6a

Please sign in to comment.