Skip to content

Commit

Permalink
chore: use dataDisplay in test request
Browse files Browse the repository at this point in the history
  • Loading branch information
emcelroy committed Dec 18, 2024
1 parent eb31a99 commit d0e93ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/developer-options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@ export const DeveloperOptionsComponent = observer(function DeveloperOptions({ass

const reqGetGraph = {
action: "get",
resource: `component[${graphId}]`,
resource: `dataDisplay[${graphId}]`,
values: {}
};
const resGetGraph = await codapInterface.sendRequest(reqGetGraph) as any;
console.log("Graph Data:", resGetGraph.values);

const devOptionsContainer = document.querySelector(".developer-options");
if (devOptionsContainer) {
Expand Down

0 comments on commit d0e93ae

Please sign in to comment.