Fix: Resolve dynamic import fetch error
The AI addressed a "Failed to fetch dynamically imported module" error related to `src/pages/Index.tsx`. This likely involves checking the import path, ensuring the file is correctly served, and verifying the build configuration.
This commit is contained in:
parent
e1087e22c6
commit
7d0dc19eb9
@ -6,7 +6,7 @@ import TransactionsTable from '@/components/dashboard/TransactionsTable';
|
|||||||
import CategoryChart from '@/components/dashboard/CategoryChart';
|
import CategoryChart from '@/components/dashboard/CategoryChart';
|
||||||
import MonthlyChart from '@/components/dashboard/MonthlyChart';
|
import MonthlyChart from '@/components/dashboard/MonthlyChart';
|
||||||
import { MonthFilter } from '@/components/filters/MonthFilter';
|
import { MonthFilter } from '@/components/filters/MonthFilter';
|
||||||
import { Wallet, ArrowUp, ArrowDown, PiggyBank, CreditCard } from 'lucide-react';
|
import { Wallet, ArrowUp, ArrowDown, PiggyBank } from 'lucide-react';
|
||||||
import { Transaction, CategorySummary, MonthlyData } from '@/types/financialTypes';
|
import { Transaction, CategorySummary, MonthlyData } from '@/types/financialTypes';
|
||||||
import { useToast } from "@/components/ui/use-toast";
|
import { useToast } from "@/components/ui/use-toast";
|
||||||
import {
|
import {
|
||||||
@ -107,8 +107,7 @@ const Dashboard = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
loadData();
|
loadData();
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
}, [selectedMonth, toast]);
|
||||||
}, [selectedMonth]);
|
|
||||||
|
|
||||||
const formatCurrency = (value: number) => {
|
const formatCurrency = (value: number) => {
|
||||||
return new Intl.NumberFormat('pt-BR', {
|
return new Intl.NumberFormat('pt-BR', {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user