Skip to content

Commit

Permalink
πŸ“ Chore(#47): λˆ„λ½λœ import 경둜 μˆ˜μ • 반영
Browse files Browse the repository at this point in the history
- by shadcn ui 경둜 μˆ˜μ • (6170e5c)
  • Loading branch information
sscoderati committed Nov 1, 2023
1 parent 15392ce commit f149f69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Toaster } from "@/components/ui/toaster";
import { Theme } from "@radix-ui/themes";
import "@radix-ui/themes/styles.css";
import AppBar from "@/components/_common/AppBar";
import { Toaster } from "@/components/_common/Toast/toaster";
import "./global.css";

const inter = Inter({
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import * as React from "react";
import { DayPicker } from "react-day-picker";
import { buttonVariants } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import { ChevronLeftIcon, ChevronRightIcon } from "@radix-ui/react-icons";
import { buttonVariants } from "@/components/_common/Selector/core/button";

export type CalendarProps = React.ComponentProps<typeof DayPicker>;

Expand Down
5 changes: 1 addition & 4 deletions src/components/ui/use-toast.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
// Inspired by react-hot-toast library
import * as React from "react";
import type {
ToastActionElement,
ToastProps,
} from "@/components/_common/Toast/toast";
import type { ToastActionElement, ToastProps } from "@/components/ui/toast";

const TOAST_LIMIT = 1;
const TOAST_REMOVE_DELAY = 1000000;
Expand Down

0 comments on commit f149f69

Please sign in to comment.