{props?.variant && (
diff --git a/packages/ui/src/components/use-toast.tsx b/packages/ui/src/components/use-toast.tsx
index cb701f7085..a8e68babd5 100644
--- a/packages/ui/src/components/use-toast.tsx
+++ b/packages/ui/src/components/use-toast.tsx
@@ -1,6 +1,5 @@
// Inspired by react-hot-toast library
import * as React from "react";
-
import type { ToastActionElement, ToastProps } from "./toast";
const TOAST_LIMIT = 1;
@@ -12,6 +11,7 @@ type ToasterToast = ToastProps & {
description?: React.ReactNode;
action?: ToastActionElement;
progress?: number;
+ footer?: React.ReactNode;
};
const actionTypes = {