mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-13 08:15:06 +01:00
rename files
This commit is contained in:
parent
3798496985
commit
3ede2a2eaf
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"files.eol": "\n",
|
||||
"editor.detectIndentation": false,
|
||||
"editor.formatOnSave": false,
|
||||
"editor.tabSize": 2
|
||||
"files.eol": "\n",
|
||||
"editor.detectIndentation": false,
|
||||
"editor.formatOnSave": false,
|
||||
"editor.tabSize": 2
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
import { DropdownButton } from "./Buttons/DropdownButton";
|
||||
import { DropdownButton } from "./buttons/DropdownButton";
|
||||
import { Icons } from "./Icon";
|
||||
import { TextInputControl } from "./TextInputs/TextInputControl";
|
||||
import { TextInputControl } from "./text-inputs/TextInputControl";
|
||||
|
||||
import { useState } from "react";
|
||||
import { MWMediaType, MWQuery } from "providers";
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { IconPatch } from "components/Buttons/IconPatch";
|
||||
import { IconPatch } from "components/buttons/IconPatch";
|
||||
import { Icons } from "components/Icon";
|
||||
import { Link } from "components/Text/Link";
|
||||
import { Title } from "components/Text/Title";
|
||||
import { Link } from "components/text/Link";
|
||||
import { Title } from "components/text/Title";
|
||||
import { DISCORD_LINK, GITHUB_LINK } from "mw_constants";
|
||||
import { Component } from "react";
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Icon, Icons } from "components/Icon";
|
||||
import { ArrowLink } from "components/Text/ArrowLink";
|
||||
import { ArrowLink } from "components/text/ArrowLink";
|
||||
import { ReactNode } from "react";
|
||||
|
||||
interface SectionHeadingProps {
|
||||
|
@ -10,7 +10,6 @@ export function MovieView() {
|
||||
const store = useWatchedContext();
|
||||
|
||||
useEffect(() => {
|
||||
throw new Error("Hi");
|
||||
(async () => {
|
||||
setStreamUrl(mediaPortable && (await getStream(mediaPortable)));
|
||||
})();
|
||||
|
@ -12,11 +12,11 @@ import { ThinContainer } from "components/layout/ThinContainer";
|
||||
import { SectionHeading } from "components/layout/SectionHeading";
|
||||
import { Icons } from "components/Icon";
|
||||
import { Loading } from "components/layout/Loading";
|
||||
import { Tagline } from "components/Text/Tagline";
|
||||
import { Title } from "components/Text/Title";
|
||||
import { Tagline } from "components/text/Tagline";
|
||||
import { Title } from "components/text/Title";
|
||||
import { useDebounce } from "hooks/useDebounce";
|
||||
import { useLoading } from "hooks/useLoading";
|
||||
import { IconPatch } from "components/Buttons/IconPatch";
|
||||
import { IconPatch } from "components/buttons/IconPatch";
|
||||
|
||||
function SearchLoading() {
|
||||
return <Loading className="my-12" text="Fetching your favourite shows..." />;
|
||||
|
Loading…
Reference in New Issue
Block a user