Add dashboard url to environment variables.

This commit is contained in:
Spencer Ofwiti 2021-06-16 12:24:53 +03:00
parent 3706c9a61a
commit 7c38111a6f
4 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { environment } from '@src/environments/environment';
@Component({
selector: 'app-pages',
@ -7,7 +8,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class PagesComponent {
url: string = 'https://dashboard.sarafu.network/';
url: string = environment.dashboardUrl;
constructor() {}
}

View File

@ -13,4 +13,5 @@ export const environment = {
cicUssdUrl: 'https://user.dev.grassrootseconomics.net',
registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',
dashboardUrl: 'https://dashboard.sarafu.network/',
};

View File

@ -13,4 +13,5 @@ export const environment = {
cicUssdUrl: 'https://user.dev.grassrootseconomics.net',
registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',
dashboardUrl: 'https://dashboard.sarafu.network/',
};

View File

@ -13,4 +13,5 @@ export const environment = {
cicUssdUrl: 'https://user.dev.grassrootseconomics.net',
registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',
dashboardUrl: 'https://dashboard.sarafu.network/',
};