Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@@ -0,0 +1,6 @@
+import api from "src/api";
+
+export const getFinancialOverviewMe = async () => {
+ const { data } = await api.get("/unit-financial-dashboard/me");
+ return data.payload;
+};