rename files

This commit is contained in:
mrjvs 2022-02-25 21:23:16 +01:00
parent 3798496985
commit 3ede2a2eaf
7 changed files with 13 additions and 14 deletions

View File

@ -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
}

View File

@ -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";

View File

@ -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";

View File

@ -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 {

View File

@ -10,7 +10,6 @@ export function MovieView() {
const store = useWatchedContext();
useEffect(() => {
throw new Error("Hi");
(async () => {
setStreamUrl(mediaPortable && (await getStream(mediaPortable)));
})();

View File

@ -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..." />;