Skip to content

Commit

Permalink
hotfix query variable
Browse files Browse the repository at this point in the history
  • Loading branch information
spolu committed Oct 12, 2023
1 parent fa6e60d commit 2f23dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/pages/api/v1/w/[wId]/apps/[aId]/runs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async function handler(

// This variable is used in the context of the DustAppRun action to use the workspace credentials
// instead of our managed credentials when running an app with a system API key.
const useWorkspaceCredentials = !!req.query.useWorkspaceCredentials;
const useWorkspaceCredentials = !!req.query["use_workspace_credentials"];

switch (req.method) {
case "POST":
Expand Down

0 comments on commit 2f23dbb

Please sign in to comment.