1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix missing semicolons in ts files

This commit is contained in:
Bill Thornton 2023-05-02 15:54:53 -04:00
parent 8041167473
commit 45623fe586
25 changed files with 29 additions and 29 deletions

View file

@ -14,7 +14,7 @@ import Page from '../components/Page';
type OnResumeOptions = {
autoFocus?: boolean;
refresh?: boolean
}
};
type ControllerProps = {
onResume: (
@ -23,7 +23,7 @@ type ControllerProps = {
refreshed: boolean;
onPause: () => void;
destroy: () => void;
}
};
const Home: FunctionComponent = () => {
const [ searchParams ] = useSearchParams();