Skip to content

Commit

Permalink
fix(dev-tools): table -> tableId (#1502)
Browse files Browse the repository at this point in the history
  • Loading branch information
holic authored Sep 15, 2023
1 parent 6e66c5b commit e037776
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/small-boxes-rush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@latticexyz/dev-tools": patch
---

Updates `table` reference to `tableId`
2 changes: 1 addition & 1 deletion packages/dev-tools/src/actions/WriteSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export function WriteSummary({ write }: Props) {
</thead>
<tbody className="font-mono text-xs">
{events.map(({ eventName, args }, i) => {
const table = hexToTableId((args as any).table);
const table = hexToTableId((args as any).tableId);
return (
<tr key={i}>
<td className="whitespace-nowrap overflow-hidden text-ellipsis">
Expand Down

0 comments on commit e037776

Please sign in to comment.