Skip to content

Commit

Permalink
fix: fix field names
Browse files Browse the repository at this point in the history
  • Loading branch information
abrgr committed Oct 24, 2023
1 parent 0d2f6d0 commit fd3b988
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"dependencies": {
"@gjsify/esbuild-plugin-deno-loader": "^0.0.3",
"@statebacked/client": "^0.1.39",
"@statebacked/client": "^0.1.40",
"@statebacked/token": "^0.2.0",
"@supabase/supabase-js": "2.26.0",
"commander": "11.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/commands/instances.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ async function queryMachineInstances(
cursor,
}),
(page) =>
page.machineInstances.map((i) => ({
name: i.instanceName,
page.instances.map((i) => ({
name: i.slug,
indexValue: i.indexValue,
})),
);
Expand Down

0 comments on commit fd3b988

Please sign in to comment.