ngx-vector-components 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -327,7 +327,7 @@ class AuthService {
327
327
  this.baseUrl = 'Auth';
328
328
  }
329
329
  getTokenByGuid(tokenGuid) {
330
- return this.http.get(`api/${this.baseUrl}/TemporaryAccessToken/${tokenGuid}`).pipe(tap((response) => {
330
+ return this.http.get(`${this.baseUrl}/TemporaryAccessToken/${tokenGuid}`).pipe(tap((response) => {
331
331
  this.storageService.setToken(response.accessToken);
332
332
  this.storageService.setUsername(response.userName);
333
333
  this.storageService.setRefreshToken(response.refreshToken);