Skip to content

Commit

Permalink
- fix: remove headless false
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol committed Aug 21, 2024
1 parent 3a76af7 commit 94fc824
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/shinkai-tool-aave-loan-requester/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export class Tool extends BaseTool<Config, Params, Result> {
async run(params: Params): Promise<RunResult<Result>> {
const browser = await playwright['chromium'].launch({
executablePath: this.config?.chromePath || chromePaths.chrome,
headless: false,
});
const context = await browser.newContext();

Expand Down
1 change: 0 additions & 1 deletion apps/shinkai-tool-aave-state/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ export class Tool extends BaseTool<Config, Params, Result> {
async run(params: Params): Promise<RunResult<Result>> {
const browser = await playwright['chromium'].launch({
executablePath: this.config?.chromePath || chromePaths.chrome,
headless: false,
});
const context = await browser.newContext();

Expand Down

0 comments on commit 94fc824

Please sign in to comment.