copy link issue fix

This commit is contained in:
venbainfotech 2022-03-28 13:39:38 +05:30
parent 5511901794
commit 1ed14b395a

View File

@ -1,5 +1,6 @@
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { environment } from 'environments/environment';
// app-scripts v:3.2.4
/*
@ -64,7 +65,9 @@ export class ConstantsProvider {
lenUserPoolId: "ap-south-1_4kkhgsYo0", // Username
lenClientId: "57t9fv113b5eab5pra127bbgn0", // ClientId for mobile
}
return testing;
return (environment.production === true ? production : testing);
}