Skip to content

Commit

Permalink
Update exit button
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed Oct 10, 2023
1 parent 00c6299 commit 3067450
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/renderer/src/stories/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ export class Main extends LitElement {
// Go to home screen if there is no next page
if (!info.next)
footer = {
next: "Back to Home Screen",
exit: false,
onNext: () => this.toRender.page.to("/"),
};
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/stories/pages/guided-mode/GuidedFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class GuidedFooter extends LitElement {
constructor({
back = "Back",
next = "Next",
exit = "Exit",
exit = "Return to Home Screen",
onBack = () => this.to(-1),
onNext = () => this.to(1),
onExit = () => this.to("/"),
Expand Down

0 comments on commit 3067450

Please sign in to comment.