Skip to content

Commit

Permalink
Fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Jan 2, 2024
1 parent ab9fb03 commit ae3e3c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/home/report/ReportActionItemSingle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ function ReportActionItemSingle({
}
return (
<UserDetailsTooltip
accountID={actorAccountID}
delegateAccountID={action.delegateAccountID}
accountID={Number(actorAccountID ?? 0)}
delegateAccountID={Number(action.delegateAccountID ?? 0)}
icon={icon}
>
<View>
Expand Down

0 comments on commit ae3e3c9

Please sign in to comment.