diff --git a/src/components/Dashboard/Tasks.jsx b/src/components/Dashboard/Tasks.jsx
index b1e04b09..c386eb15 100644
--- a/src/components/Dashboard/Tasks.jsx
+++ b/src/components/Dashboard/Tasks.jsx
@@ -2,6 +2,7 @@ import React from "react";
import { useSelectedProject } from "../../slices/apiDataManager";
import { useDashboardTasksCardData } from "../../hooks/useDashboard_Data";
import { TasksSkeleton } from "./DashboardSkeleton";
+import { formatCurrency, formatFigure } from "../../utils/appUtils";
const TasksCard = () => {
const projectId = useSelectedProject();
@@ -16,49 +17,56 @@ const TasksCard = () => {
} = useDashboardTasksCardData(projectId);
if (isLoading) return