Skip to content

Commit

Permalink
fix bug with default config
Browse files Browse the repository at this point in the history
  • Loading branch information
aboedo committed Sep 29, 2023
1 parent 4e94bcf commit 802ff60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Configuration: ObservableObject {
}

private init() {
currentMode = apiKey.isEmpty ? .custom : .testing
currentMode = apiKey.isEmpty ? .testing : .custom
}


Expand Down

0 comments on commit 802ff60

Please sign in to comment.