Skip to content

Commit

Permalink
fix(ui-ux): always convert contract result to string
Browse files Browse the repository at this point in the history
  • Loading branch information
lykalabrada committed Aug 11, 2023
1 parent b257d94 commit 153860f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function ContractMethodResult({
key={`${output.type}${output.value}`}
className="text-white-300 break-all"
>
<span>{output.value}</span>
<span>{output.value.toString()}</span>
<span className="italic text-sm text-white-900 ml-2">
{output.type}
</span>
Expand Down

0 comments on commit 153860f

Please sign in to comment.