Skip to content

Commit

Permalink
chore: fix optiosn
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jan 19, 2025
1 parent c425a76 commit 29f1844
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ window.addingToApp = function() {

document.getElementById('feature-phoenix').classList.remove("hidden");
document.getElementById('quickstart-live_view').classList.remove("hidden");
document.getElementById('already-have-an-app-button').innerHTML = "Creating a new app?"
document.getElementById('already-have-an-app-button').innerHTML = "Already have an app?"
} else {
addingToApp = true;

Expand All @@ -354,7 +354,7 @@ window.addingToApp = function() {
}
document.getElementById('feature-phoenix').classList.add("hidden");
document.getElementById('quickstart-live_view').classList.add("hidden");
document.getElementById('already-have-an-app-button').innerHTML = "Already have an app?"
document.getElementById('already-have-an-app-button').innerHTML = "Creating a new app?"
}

setUrl()
Expand Down Expand Up @@ -534,9 +534,12 @@ function setUrl() {
${arg} \\`
})

code = code + `
--yes
`
if (args.length == 0) {
code = code + `
--yes
`
}


const manualSetupBox = document.getElementById("manual-setup-box")

Expand Down

0 comments on commit 29f1844

Please sign in to comment.