diff --git a/apps/dashboard/src/components/tables/vault/data-table-row.tsx b/apps/dashboard/src/components/tables/vault/data-table-row.tsx index 15792ed47f..a32eb19d8f 100644 --- a/apps/dashboard/src/components/tables/vault/data-table-row.tsx +++ b/apps/dashboard/src/components/tables/vault/data-table-row.tsx @@ -205,7 +205,6 @@ export function DataTableRow({ data, deleteFile, createFolder, deleteFolder }) { Delete )} - {/* Settings */} diff --git a/bun.lockb b/bun.lockb index 0ee775fe12..9d6d326af3 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/packages/jobs/src/transactions/export.ts b/packages/jobs/src/transactions/export.ts index 12bba92a93..271467bc1a 100644 --- a/packages/jobs/src/transactions/export.ts +++ b/packages/jobs/src/transactions/export.ts @@ -82,7 +82,8 @@ client.defineJob({ await generateExport.update("generate-export-done", { state: "success", data: { - url: "https://service.midday.ai", + filePath: "exports/export-2022-01-01-2023-01-01.zip", + fileName: "export-2022-01-01-2023-01-01.zip", progress: 100, totalItems: data.meta.count, }, diff --git a/packages/ui/src/components/toast.tsx b/packages/ui/src/components/toast.tsx index 9b6da837a8..d565b11bf0 100644 --- a/packages/ui/src/components/toast.tsx +++ b/packages/ui/src/components/toast.tsx @@ -3,7 +3,6 @@ import { type VariantProps, cva } from "class-variance-authority"; import { X } from "lucide-react"; import * as React from "react"; import { cn } from "../utils"; -import { Icons } from "./icons"; const ToastProvider = ToastPrimitives.Provider; diff --git a/packages/ui/src/components/toaster.tsx b/packages/ui/src/components/toaster.tsx index 5ba51cc2f5..b8f9edd3ea 100644 --- a/packages/ui/src/components/toaster.tsx +++ b/packages/ui/src/components/toaster.tsx @@ -31,7 +31,7 @@ export function Toaster() { return (
-
+
{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 = {