From 260b41b29b9543f3e2acd133f8cdcaed258555bd Mon Sep 17 00:00:00 2001 From: Tania Gutierrez Date: Wed, 13 Mar 2024 21:55:44 -0400 Subject: [PATCH] style: Formatted code --- app/components/general-layout.tsx | 112 ++++++++++++++++-------------- app/routes/account.tsx | 51 ++++++++------ 2 files changed, 88 insertions(+), 75 deletions(-) diff --git a/app/components/general-layout.tsx b/app/components/general-layout.tsx index 337dd39..7eeb351 100644 --- a/app/components/general-layout.tsx +++ b/app/components/general-layout.tsx @@ -1,20 +1,20 @@ -import { Button } from "~/components/ui/button" -import logoPng from "~/images/lume-logo.png?url" -import lumeColorLogoPng from "~/images/lume-color-logo.png?url" -import discordLogoPng from "~/images/discord-logo.png?url" -import { Link, useLocation } from "@remix-run/react" +import { Button } from "~/components/ui/button"; +import logoPng from "~/images/lume-logo.png?url"; +import lumeColorLogoPng from "~/images/lume-color-logo.png?url"; +import discordLogoPng from "~/images/discord-logo.png?url"; +import { Link, useLocation } from "@remix-run/react"; import { Dialog, DialogContent, DialogHeader, DialogTitle, - DialogTrigger -} from "~/components/ui/dialog" -import { useUppy } from "./lib/uppy" -import type { UppyFile } from "@uppy/core" -import { Progress } from "~/components/ui/progress" -import { DialogClose } from "@radix-ui/react-dialog" -import { ChevronDownIcon, TrashIcon } from "@radix-ui/react-icons" + DialogTrigger, +} from "~/components/ui/dialog"; +import { useUppy } from "./lib/uppy"; +import type { UppyFile } from "@uppy/core"; +import { Progress } from "~/components/ui/progress"; +import { DialogClose } from "@radix-ui/react-dialog"; +import { ChevronDownIcon, TrashIcon } from "@radix-ui/react-icons"; import { ClockIcon, DriveIcon, @@ -23,11 +23,11 @@ import { CloudCheckIcon, BoxCheckedIcon, PageIcon, - ThemeIcon -} from "./icons" -import { DropdownMenu, DropdownMenuTrigger } from "./ui/dropdown-menu" -import { Avatar } from "@radix-ui/react-avatar" -import { cn } from "~/utils" + ThemeIcon, +} from "./icons"; +import { DropdownMenu, DropdownMenuTrigger } from "./ui/dropdown-menu"; +import { Avatar } from "@radix-ui/react-avatar"; +import { cn } from "~/utils"; export const GeneralLayout = ({ children }: React.PropsWithChildren<{}>) => { const location = useLocation(); @@ -40,7 +40,8 @@ export const GeneralLayout = ({ children }: React.PropsWithChildren<{}>) => {