Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Commit

Permalink
Fixes .toString() unsafe call
Browse files Browse the repository at this point in the history
  • Loading branch information
gre committed Mar 22, 2022
1 parent b221b7c commit 0dcaf35
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/screens/OperationDetails/Extra.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ export default function OperationDetailsExtra({ extra }: Props) {
{Object.entries(extra).map(([key, value]) => (
<Section
title={t(`operationDetails.extra.${key}`)}
// $FlowFixMe
value={value.toString()}
value={String(value)}
/>
))}
</>
Expand Down

0 comments on commit 0dcaf35

Please sign in to comment.