Use consistent naming for hooks

This commit is contained in:
Alex Gleason 2025-04-17 18:32:44 -05:00
parent e081094cdf
commit b8175a459e
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
5 changed files with 2 additions and 5 deletions

View File

@ -3,7 +3,7 @@ import { Slot } from "@radix-ui/react-slot"
import { VariantProps, cva } from "class-variance-authority" import { VariantProps, cva } from "class-variance-authority"
import { PanelLeft } from "lucide-react" import { PanelLeft } from "lucide-react"
import { useIsMobile } from "@/hooks/use-mobile" import { useIsMobile } from "@/hooks/useIsMobile"
import { cn } from "@/lib/utils" import { cn } from "@/lib/utils"
import { Button } from "@/components/ui/button" import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input" import { Input } from "@/components/ui/input"

View File

@ -1,4 +1,4 @@
import { useToast } from "@/hooks/use-toast" import { useToast } from "@/hooks/useToast"
import { import {
Toast, Toast,
ToastClose, ToastClose,

View File

@ -1,3 +0,0 @@
import { useToast, toast } from "@/hooks/use-toast";
export { useToast, toast };