Skip to content

Commit

Permalink
via
Browse files Browse the repository at this point in the history
  • Loading branch information
y77cao committed Sep 18, 2023
1 parent 12e4092 commit 044e4d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/dev-tools/src/actions/WriteSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ export function WriteSummary({ write }: Props) {
)}
>
<div className="flex-1 font-mono text-white whitespace-nowrap overflow-hidden text-ellipsis">
{functionName}({functionArgs?.map((value) => serialize(value)).join(", ")})
{functionName}({functionArgs?.map((value) => serialize(value)).join(", ")}){" "}
{write.request.functionName !== functionName ? (
<span className="text-xs text-white/40">via {write.request.functionName}</span>
) : null}
</div>
{transactionReceipt.status === "fulfilled" ? (
<a
Expand Down

0 comments on commit 044e4d7

Please sign in to comment.