File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
client/src/features/api-client-v2-compat Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ const FETCH_DEFAULT = {
40
40
41
41
export default class ApiClientV2Compat {
42
42
baseUrl : string ;
43
- uiServerUrl : string ;
43
+ uiserverUrl : string ;
44
44
supportsLegacy = false ;
45
45
46
- constructor ( baseUrl : string , uiServerUrl : string ) {
46
+ constructor ( baseUrl : string , uiserverUrl : string ) {
47
47
this . baseUrl = baseUrl ;
48
- this . uiServerUrl = uiServerUrl ;
48
+ this . uiserverUrl = uiserverUrl ;
49
49
}
50
50
51
51
async clientFetch (
@@ -96,13 +96,13 @@ export default class ApiClientV2Compat {
96
96
doLogin ( ) {
97
97
// This is invoked to perform authentication.
98
98
window . location . href = `${
99
- this . uiServerUrl
99
+ this . uiserverUrl
100
100
} /auth/login?redirect_url=${ encodeURIComponent ( window . location . href ) } `;
101
101
}
102
102
103
103
doLogout ( ) {
104
104
window . location . href = `${
105
- this . uiServerUrl
105
+ this . uiserverUrl
106
106
} /auth/logout?redirect_url=${ encodeURIComponent ( window . location . href ) } `;
107
107
}
108
108
You can’t perform that action at this time.
0 commit comments