diff --git a/src/features/home/DashboardView.tsx b/src/features/home/DashboardView.tsx
index 60db322..2210629 100644
--- a/src/features/home/DashboardView.tsx
+++ b/src/features/home/DashboardView.tsx
@@ -252,6 +252,7 @@ function IncomeRow({ label, value, dotColor, loading, hidden }: { label: string;
function IncomeCard({ month, loading, hidden }: { month?: Analyze; loading: boolean; hidden: boolean }) {
const salary = dec(month?.salaryIncome);
const support = dec(month?.otherIncome);
+ const typical = dec(month?.monthlySalary);
const income = dec(month?.income);
const expense = dec(month?.expense);
const saved = income - expense;
@@ -265,6 +266,11 @@ function IncomeCard({ month, loading, hidden }: { month?: Analyze; loading: bool