Skip to content

Commit

Permalink
Removed payer as option param for translate messgae
Browse files Browse the repository at this point in the history
  • Loading branch information
huzaifa-99 committed Sep 13, 2023
1 parent 3816507 commit f532680
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/languages/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ type WaitingOnBankAccountParams = {submitterDisplayName: string};

type SettledAfterAddedBankAccountParams = {submitterDisplayName: string; amount: string};

type PaidElsewhereWithAmountParams = {payer?: string; amount: number};
type PaidElsewhereWithAmountParams = {payer: string; amount: number};

type PaidUsingPaypalWithAmountParams = {payer?: string; amount: string};
type PaidUsingPaypalWithAmountParams = {payer: string; amount: string};

type PaidWithExpensifyWithAmountParams = {payer?: string; amount: string};
type PaidWithExpensifyWithAmountParams = {payer: string; amount: string};

type ThreadRequestReportNameParams = {formattedAmount: string; comment: string};

Expand Down

0 comments on commit f532680

Please sign in to comment.