diff --git a/frontend/projects/setup-wizard/src/app/services/api/live-api.service.ts b/frontend/projects/setup-wizard/src/app/services/api/live-api.service.ts index 580a02414..54d52af92 100644 --- a/frontend/projects/setup-wizard/src/app/services/api/live-api.service.ts +++ b/frontend/projects/setup-wizard/src/app/services/api/live-api.service.ts @@ -111,10 +111,15 @@ export class LiveApiService extends ApiService { } async setupComplete() { - return this.http.rpcRequest({ + const res = await this.http.rpcRequest({ method: 'setup.complete', params: {}, }) + + return { + ...res, + 'root-ca': btoa(res['root-ca']), + } } }