Skip to content

Commit

Permalink
fix(basic.gblib): Fixes in WebAutomation.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Mar 7, 2023
1 parent d1b9da2 commit b576b6f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/basic.gblib/services/DialogKeywords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -774,9 +774,11 @@ export class DialogKeywords {
await sleep(DEFAULT_HEAR_POLL_INTERVAL);
}

const answer = min.cbMap[userId].promise;
const answer = min. cbMap[userId].promise;

if (kind === 'sheet') {
if (!kind) {
result = answer;
} else if (kind === 'sheet') {
// Retrieves the .xlsx file associated with the HEAR var AS file.xlsx.

let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min);
Expand Down

0 comments on commit b576b6f

Please sign in to comment.