From 74dda549f5a91fe211f33fe463c24f3d7c811023 Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Mon, 20 Apr 2026 19:57:05 +0000 Subject: [PATCH] =?UTF-8?q?style(format):=20corrigir=20ordena=C3=A7=C3=A3o?= =?UTF-8?q?=20de=20imports=20em=203=20arquivos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- .../installment-expenses/installment-expense-list-item.tsx | 2 +- .../payment-overview/payment-overview-widget-view.tsx | 2 +- .../dashboard/overview/current-period-overview-queries.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/dashboard/components/installment-expenses/installment-expense-list-item.tsx b/src/features/dashboard/components/installment-expenses/installment-expense-list-item.tsx index 11f2b54..016f73b 100644 --- a/src/features/dashboard/components/installment-expenses/installment-expense-list-item.tsx +++ b/src/features/dashboard/components/installment-expenses/installment-expense-list-item.tsx @@ -1,6 +1,6 @@ import Image from "next/image"; -import type { InstallmentExpense } from "@/features/dashboard/expenses/installment-expenses-queries"; import { buildInstallmentExpenseDisplay } from "@/features/dashboard/expenses/installment-expenses-helpers"; +import type { InstallmentExpense } from "@/features/dashboard/expenses/installment-expenses-queries"; import { EstablishmentLogo } from "@/shared/components/entity-avatar"; import MoneyValues from "@/shared/components/money-values"; import { Progress } from "@/shared/components/ui/progress"; diff --git a/src/features/dashboard/components/payment-overview/payment-overview-widget-view.tsx b/src/features/dashboard/components/payment-overview/payment-overview-widget-view.tsx index d4a9b38..67cc0b0 100644 --- a/src/features/dashboard/components/payment-overview/payment-overview-widget-view.tsx +++ b/src/features/dashboard/components/payment-overview/payment-overview-widget-view.tsx @@ -1,7 +1,7 @@ import { RiMoneyDollarCircleLine, RiSlideshowLine } from "@remixicon/react"; -import type { PaymentOverviewTab } from "@/features/dashboard/payments/payment-overview-tabs"; import type { PaymentConditionsData } from "@/features/dashboard/payments/payment-conditions-queries"; import type { PaymentMethodsData } from "@/features/dashboard/payments/payment-methods-queries"; +import type { PaymentOverviewTab } from "@/features/dashboard/payments/payment-overview-tabs"; import { Tabs, TabsContent, diff --git a/src/features/dashboard/overview/current-period-overview-queries.ts b/src/features/dashboard/overview/current-period-overview-queries.ts index 25d22ee..83b029d 100644 --- a/src/features/dashboard/overview/current-period-overview-queries.ts +++ b/src/features/dashboard/overview/current-period-overview-queries.ts @@ -6,6 +6,7 @@ import { transactions, } from "@/db/schema"; import type { DashboardBillsSnapshot } from "@/features/dashboard/bills/bills-queries"; +import type { PurchasesByCategoryData } from "@/features/dashboard/categories/purchases-by-category-queries"; import type { InstallmentExpensesData } from "@/features/dashboard/expenses/installment-expenses-queries"; import type { RecurringExpensesData } from "@/features/dashboard/expenses/recurring-expenses-queries"; import type { @@ -15,7 +16,6 @@ import type { import type { PaymentConditionsData } from "@/features/dashboard/payments/payment-conditions-queries"; import type { PaymentMethodsData } from "@/features/dashboard/payments/payment-methods-queries"; import type { PaymentStatusData } from "@/features/dashboard/payments/payment-status-queries"; -import type { PurchasesByCategoryData } from "@/features/dashboard/categories/purchases-by-category-queries"; import type { TopEstablishmentsData } from "@/features/dashboard/top-establishments-queries"; import { excludeTransactionsFromExcludedAccounts } from "@/features/dashboard/transaction-filters"; import {