File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
infrastructure/eid-wallet/src/lib/global/controllers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11import {
2- PUBLIC_REGISTRY_URL ,
3- PUBLIC_PROVISIONER_URL ,
42 PUBLIC_EID_WALLET_TOKEN ,
3+ PUBLIC_PROVISIONER_URL ,
4+ PUBLIC_REGISTRY_URL ,
55} from "$env/static/public" ;
66import type { Store } from "@tauri-apps/plugin-store" ;
77import axios from "axios" ;
88import { GraphQLClient } from "graphql-request" ;
99import NotificationService from "../../services/NotificationService" ;
10- import type { UserController } from "./user" ;
1110import type { KeyService } from "./key" ;
11+ import type { UserController } from "./user" ;
1212
1313const STORE_META_ENVELOPE = `
1414 mutation StoreMetaEnvelope($input: MetaEnvelopeInput!) {
@@ -176,7 +176,7 @@ export class VaultController {
176176 } ;
177177
178178 if ( authToken ) {
179- headers [ " Authorization" ] = `Bearer ${ authToken } ` ;
179+ headers . Authorization = `Bearer ${ authToken } ` ;
180180 }
181181
182182 await axios . patch ( patchUrl , { publicKey } , { headers } ) ;
You can’t perform that action at this time.
0 commit comments