We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c3f7c6 commit 9472668Copy full SHA for 9472668
packages/ally-solvro-auth/src/driver.ts
@@ -130,16 +130,10 @@ export class SolvroAuthDriver
130
131
this.config = config;
132
133
- if (process.env.NODE_ENV === "development") {
134
- this.config.realm = this.config.realm || "myrealm";
135
- }
136
-
137
- if (process.env.NODE_ENV === "production") {
138
- this.config.realm = this.config.realm || "solvro";
+ this.config.realm = this.config.realm || "solvro";
139
140
- this.config.solvroAuthUrl =
141
- this.config.solvroAuthUrl || "https://auth.s.solvro.com";
142
+ this.config.solvroAuthUrl =
+ this.config.solvroAuthUrl || "https://auth.s.solvro.com";
143
144
if (this.config.solvroAuthUrl) {
145
this.authorizeUrl = this.buildSolvroAuthUrl("auth");
0 commit comments