Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rylorin committed May 1, 2024
1 parent f95048d commit d8609c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/Portfolio/Report/OtherDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const OtherDetails = ({ theReports, ..._rest }: Props): React.ReactNode => {
};
break;
default:
throw Error(`Unimplemented statement type: #${statement.id}`);
throw Error(`Unimplemented statement type: #${(statement as StatementEntry).id}`);
}
totalAmount += result.amount;
return result;
Expand Down

0 comments on commit d8609c4

Please sign in to comment.