Skip to content

Commit

Permalink
Add comment to clarify
Browse files Browse the repository at this point in the history
  • Loading branch information
vanessa committed Nov 15, 2023
1 parent b39083b commit 16ff13f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/shared/lib/accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ import {
type TrendEntry = {
amount: number;
date: string;
type: 'DEBT' | 'ASSET' | 'EXPENSE' | string;
// this is determined by the type of report we fetch (DEBTS_TIME/ASSETS_TIME)
// it will return different values if we decide to fetch more types of reports (e.g., SPENDING_TIME)
type: 'DEBT' | 'ASSET';
};

type TrendsResponse = {
Expand Down

0 comments on commit 16ff13f

Please sign in to comment.