Skip to content

Commit

Permalink
fix(dev-tools): key -> keyTuple (#1505)
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Sep 15, 2023
1 parent bd9cc8e commit e0193e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/silly-snakes-fold.md
@@ -0,0 +1,5 @@
---
"@latticexyz/dev-tools": patch
---

Updates store event `key` reference to `keyTuple`
2 changes: 1 addition & 1 deletion packages/dev-tools/src/actions/WriteSummary.tsx
Expand Up @@ -143,7 +143,7 @@ export function WriteSummary({ write }: Props) {
{eventName === "StoreDeleteRecord" ? <span className="text-red-500 font-bold">-</span> : null}
</td>
<td className="whitespace-nowrap overflow-hidden text-ellipsis">
{hexKeyTupleToEntity((args as any).key)}
{hexKeyTupleToEntity((args as any).keyTuple)}
</td>
<td className="whitespace-nowrap overflow-hidden text-ellipsis">{(args as any).data}</td>
</tr>
Expand Down

0 comments on commit e0193e5

Please sign in to comment.