Disable test client by default

This commit is contained in:
Madeline
2022-12-21 19:52:08 +11:00
parent b9f171d940
commit 22fb62673a
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ import { ClientReleaseConfiguration } from ".";
export class ClientConfiguration {
releases: ClientReleaseConfiguration = new ClientReleaseConfiguration();
useTestClient: boolean = true;
useTestClient: boolean = false;
}