
Client
MODIFI
Year
2024
Scope of Work
UI
Location
Berlin
This project focused on improving the usability of MODIFI's financial dashboard, specifically around repayment visibility. The existing experience made it difficult for users to quickly understand what they owed, as repayment details and other key elements were not clearly surfaced.






export function getOverviewMetrics(trades) {
const totalTrades = trades.length;
const totalTradeValue = trades.reduce(
(sum, trade) => sum + trade.amount,
0
);
const utilizationPercent = Math.round(
trades
.filter(t => t.status === "Approved" || t.status === "In Progress")
.reduce((sum, t) => sum + t.amount, 0) / 200000 * 100
);
return { totalTrades, totalTradeValue, utilizationPercent };
}const quickFilterMap = {
"Action Required": ["In Review"],
Completed: ["Approved"],
"In Progress": ["In Progress"],
};By restructuring the dashboard, onboarding flow, and trade views, the platform became easier to read and act on. Key information is now surfaced clearly, reducing friction and helping users make faster decisions.