Skip to content

Commit

Permalink
style: biome
Browse files Browse the repository at this point in the history
  • Loading branch information
soyricardodev committed Jul 18, 2024
1 parent 7a0b633 commit 19b5e5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
"use client";

import { useMediaQuery } from "@theliaison/hooks";
import { cn } from "@theliaison/ui";
import { Button } from "@theliaison/ui/button";
import { Step, Stepper, useStepper } from "@theliaison/ui/stepper";
import { Dialog, DialogContent, DialogTrigger } from "@theliaison/ui/dialog";
import { Drawer, DrawerContent, DrawerTrigger } from "@theliaison/ui/drawer";
import { Step, Stepper, useStepper } from "@theliaison/ui/stepper";
import { ChevronRightIcon } from "lucide-react";
import { useConfirmDialogStore } from "~/store/confirm-dialog";
import Link from "next/link";
import { cn } from "@theliaison/ui";
import { useConfirmDialogStore } from "~/store/confirm-dialog";

const steps: { label: string; description: string }[] = [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { z } from "zod";

import { cn } from "@theliaison/ui";

import { ChevronDownIcon } from "@radix-ui/react-icons";
import {
Form,
FormControl,
Expand All @@ -17,16 +18,15 @@ import {
FormLabel,
FormMessage,
} from "@theliaison/ui/form";
import { getFedexLocations } from "./actions";
import { useState } from "react";
import { toast } from "sonner";
import { ChevronDownIcon } from "@radix-ui/react-icons";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
} from "@theliaison/ui/select";
import { useState } from "react";
import { toast } from "sonner";
import { getFedexLocations } from "./actions";

export type ShippingFormProps = React.HTMLAttributes<HTMLDivElement> & {
hideTitle?: boolean;
Expand Down

0 comments on commit 19b5e5d

Please sign in to comment.