Skip to content

Commit

Permalink
fix: bad open method string
Browse files Browse the repository at this point in the history
  • Loading branch information
vobu authored and tabris87 committed Oct 25, 2022
1 parent 781f204 commit 5eb7976
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class Wdi5PageBuilder extends Wdi5IPageBuilder {

_generateOpenMethod(): string {
const p = new StringBuilder();
p.addTab().add(`async open("${this.hashPath}") {`).addNewLine();
p.addTab().add(`async open() {`).addNewLine();
p.addTab(2).add(`wdi5.goTo("${this.hashPath}")`).addNewLine();
p.addTab().add(`}`).addNewLine();
return p.toString();
Expand Down

0 comments on commit 5eb7976

Please sign in to comment.