+
));
@@ -59,22 +59,24 @@ TableHead.displayName = 'TableHead';
const TableCell = React.forwardRef<
HTMLTableCellElement,
React.TdHTMLAttributes
->(({ className, ...props }, ref) => | );
+>(({ className, ...props }, ref) => (
+ |
+));
TableCell.displayName = 'TableCell';
const TableCaption = React.forwardRef<
HTMLTableCaptionElement,
React.HTMLAttributes
>(({ className, ...props }, ref) => (
-
+
));
TableCaption.displayName = 'TableCaption';
export {
- TableContainer,
TableBody,
TableCaption,
TableCell,
+ TableContainer,
TableFooter,
TableHead,
TableHeader,
diff --git a/packages/ui/src/components/toast/toast.tsx b/packages/ui/src/components/toast/toast.tsx
index 5dfaf8c2..060922d1 100644
--- a/packages/ui/src/components/toast/toast.tsx
+++ b/packages/ui/src/components/toast/toast.tsx
@@ -15,7 +15,7 @@ interface ToastProps {
}
const Toast = ({ toast }: ToastProps) => {
- const { id, title, description, action, icon, variant, ...props } = toast;
+ const { title, description, action, icon, variant, ...props } = toast;
// Default icons based on variant
const getDefaultIcon = () => {