fix semi colons

This commit is contained in:
Thijs van Loef
2025-06-09 23:52:16 +02:00
parent 3ee9051bc1
commit cbca88f76b
21 changed files with 261 additions and 261 deletions

View File

@@ -1,6 +1,6 @@
"use client"
"use client";
import { useToast } from "@/hooks/useToast"
import { useToast } from "@/hooks/useToast";
import {
Toast,
ToastClose,
@@ -8,10 +8,10 @@ import {
ToastProvider,
ToastTitle,
ToastViewport,
} from "@/components/ui/toast"
} from "@/components/ui/toast";
export function Toaster() {
const { toasts } = useToast()
const { toasts } = useToast();
return (
<ToastProvider>
@@ -27,9 +27,9 @@ export function Toaster() {
{action}
<ToastClose />
</Toast>
)
);
})}
<ToastViewport />
</ToastProvider>
)
);
}