diff --git a/modules/customer-invoices/src/web/proformas/list/ui/pages/list-proformas-page.tsx b/modules/customer-invoices/src/web/proformas/list/ui/pages/list-proformas-page.tsx index fc140caa..13071f1d 100644 --- a/modules/customer-invoices/src/web/proformas/list/ui/pages/list-proformas-page.tsx +++ b/modules/customer-invoices/src/web/proformas/list/ui/pages/list-proformas-page.tsx @@ -1,6 +1,6 @@ import { ErrorAlert, PageHeader, SimpleSearchInput } from "@erp/core/components"; import { useDataSource, useReturnToNavigation } from "@erp/core/hooks"; -import { type DataTableMeta, AppContent, BackHistoryButton } from "@repo/rdx-ui/components"; +import { AppContent, BackHistoryButton, type DataTableMeta } from "@repo/rdx-ui/components"; import { showErrorToast, showSuccessToast } from "@repo/rdx-ui/helpers"; import { Button, @@ -28,8 +28,8 @@ import { RefreshCwIcon, Trash2Icon, } from "lucide-react"; -import { createSearchParams, useNavigate } from "react-router-dom"; import { useCallback, useMemo, useState } from "react"; +import { createSearchParams, useNavigate } from "react-router-dom"; import { useTranslation } from "../../../../i18n"; import { ChangeProformaStatusDialog } from "../../../change-status"; @@ -143,7 +143,9 @@ const ProformasSelectionActions = ({ } catch (error) { showErrorToast( "Error al descargar", - error instanceof Error ? error.message : "No se pudieron descargar las proformas seleccionadas." + error instanceof Error + ? error.message + : "No se pudieron descargar las proformas seleccionadas." ); } finally { setIsDownloading(false); @@ -166,9 +168,7 @@ const ProformasSelectionActions = ({