diff --git a/Justfile b/Justfile index f50ef4c4adfd..a0ea8397dfe2 100644 --- a/Justfile +++ b/Justfile @@ -144,7 +144,6 @@ debug-ui *alpha: @echo "🚀 Starting goose frontend in external backend mode{{ if alpha == "alpha" { " with alpha features enabled" } else { "" } }}" cd ui/desktop && \ export GOOSE_EXTERNAL_BACKEND=true && \ - export GOOSE_EXTERNAL_PORT=3000 && \ {{ if alpha == "alpha" { "export ALPHA=true &&" } else { "" } }} \ npm install && \ npm run {{ if alpha == "alpha" { "start-alpha-gui" } else { "start-gui" } }} diff --git a/ui/desktop/src/goosed.ts b/ui/desktop/src/goosed.ts index 9a5c14f6f554..2528a816e833 100644 --- a/ui/desktop/src/goosed.ts +++ b/ui/desktop/src/goosed.ts @@ -105,7 +105,8 @@ export const startGoosed = async (options: StartGoosedOptions): Promise