Fix module import errors
Corrected import paths for '@/contexts/BudgetContext' in multiple components to resolve module not found errors.
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
|
||||
import React from 'react';
|
||||
import BudgetProgressCard from '@/components/BudgetProgressCard';
|
||||
import BudgetCategoriesSection from '@/components/BudgetCategoriesSection';
|
||||
import RecentTransactionsSection from '@/components/RecentTransactionsSection';
|
||||
import EmptyState from './EmptyState';
|
||||
import { BudgetPeriod } from '@/contexts/BudgetContext';
|
||||
import { BudgetPeriod } from '@/contexts/budget/BudgetContext';
|
||||
import { formatCurrency, calculatePercentage } from '@/utils/formatters';
|
||||
import { Transaction } from '@/components/TransactionCard';
|
||||
import { Transaction } from '@/contexts/budget/types';
|
||||
|
||||
interface HomeContentProps {
|
||||
transactions: Transaction[];
|
||||
|
||||
Reference in New Issue
Block a user