mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-11 09:45:33 +00:00
fix lint
This commit is contained in:
parent
314f9574f6
commit
b2648e1980
3 changed files with 3 additions and 3 deletions
|
|
@ -16,4 +16,4 @@ VITE_BACKEND_URL=https://server1.com,https://server2.com,https://server3.com
|
|||
# Trakt integration setup. Get these at https://trakt.tv/oauth/applications
|
||||
VITE_TRAKT_CLIENT_ID=
|
||||
VITE_TRAKT_CLIENT_SECRET=
|
||||
TRAKT_REDIRECT_URI=https://pstream.mov
|
||||
TRAKT_REDIRECT_URI=https://your domain
|
||||
|
|
|
|||
|
|
@ -476,7 +476,7 @@ export function CaptionsView({
|
|||
);
|
||||
const delay = useSubtitleStore((s) => s.delay);
|
||||
const appLanguage = useLanguageStore((s) => s.language);
|
||||
const setSubtitle = useSubtitleStore((s) => s.setSubtitle);
|
||||
// const setSubtitle = useSubtitleStore((s) => s.setSubtitle);
|
||||
const matchScore = useCaptionMatchScore();
|
||||
|
||||
// Get combined caption list
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { useCallback, useEffect, useMemo, useRef } from "react";
|
||||
import { useCallback, useEffect, useMemo } from "react";
|
||||
|
||||
import { usePlayerStore } from "@/stores/player/store";
|
||||
import { useVolumeStore } from "@/stores/volume";
|
||||
|
|
|
|||
Loading…
Reference in a new issue