Skip to content

Commit 38d0d50

Browse files
committed
Remove DOME as default theme
1 parent 7aa0f17 commit 38d0d50

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/app/services/app-init.service.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export class AppInitService {
3535
environment.analytics = config.analytics ?? 'https://analytics.dome-marketplace-sbx.org/',
3636
environment.feedbackCampaign = config.feedbackCampaign ?? false,
3737
environment.feedbackCampaignExpiration = config.feedbackCampaign ?? moment().add(1, 'week').unix()
38+
environment.providerThemeName = config.theme ?? 'default';
3839
resolve(config);
3940
}),
4041
error: (error) => {

src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const environment = {
6767
BUNDLE_ENABLED: false,
6868
DFT_CATALOG_ID: '',
6969
MAX_FILE_SIZE:3145728,
70-
providerThemeName: 'DOME',
70+
providerThemeName: 'default',
7171
quoteApi: 'http://localhost:8080/quoteManagement',
7272
quoteEndpoints: {
7373
createQuote: '/createQuote',

src/environments/environment.production.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const environment = {
6767
BUNDLE_ENABLED: false,
6868
DFT_CATALOG_ID: '',
6969
MAX_FILE_SIZE:3145728,
70-
providerThemeName: 'DOME',
70+
providerThemeName: 'default',
7171
quoteApi: 'http://localhost:8080/quoteManagement',
7272
quoteEndpoints: {
7373
createQuote: '/createQuote',

src/environments/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const environment = {
6767
BUNDLE_ENABLED: false,
6868
DFT_CATALOG_ID: '',
6969
MAX_FILE_SIZE:3145728,
70-
providerThemeName: 'DOME',
70+
providerThemeName: 'default',
7171
quoteApi: 'http://localhost:8080/quoteManagement',
7272
quoteEndpoints: {
7373
createQuote: '/createQuote',

0 commit comments

Comments
 (0)