From 8bbfe4ee1d2c6911fc8e1d09d99964a483a80431 Mon Sep 17 00:00:00 2001 From: Astalum Date: Wed, 18 Sep 2024 22:19:47 +0900 Subject: [PATCH] fix:fmt --- app/routes/_header.casher.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/routes/_header.casher.tsx b/app/routes/_header.casher.tsx index f8d853c7..d42ff986 100644 --- a/app/routes/_header.casher.tsx +++ b/app/routes/_header.casher.tsx @@ -1,7 +1,7 @@ import { parseWithZod } from "@conform-to/zod"; import { AlertDialogCancel } from "@radix-ui/react-alert-dialog"; import { TrashIcon } from "@radix-ui/react-icons"; -import { type ClientActionFunction, json } from "@remix-run/react"; +import { json, type ClientActionFunction } from "@remix-run/react"; import { indexOf } from "lodash"; import { useState } from "react"; import useSWRSubscription from "swr/subscription"; @@ -30,7 +30,7 @@ import { import { itemConverter } from "~/firebase/converter"; import { collectionSub } from "~/firebase/subscription"; import { type WithId } from "~/lib/typeguard"; -import { type Item, itemSchema, type ItemType } from "~/models/item"; +import { itemSchema, type Item, type ItemType } from "~/models/item"; import { type Order } from "~/models/order"; import { itemRepository } from "~/repositories/item";