Skip to content

Commit

Permalink
Fixes Capalization error (#923)
Browse files Browse the repository at this point in the history
  • Loading branch information
lodewiges authored Jan 19, 2025
1 parent 2ac408a commit 9fc611a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = function (environment) {
// ENV.APP.LOG_VIEW_LOOKUPS = true;

ENV.clientId = '123456789';
ENV.sofiaurl = 'http://localhost:5000';
ENV.sofiaUrl = 'http://localhost:5000';

// Disable mirage in development
ENV['ember-cli-mirage'] = {
Expand Down Expand Up @@ -116,12 +116,12 @@ module.exports = function (environment) {
if (deployTarget === 'production') {
ENV.clientId = 'IIeYVVbdNhiSiSCxKP5eUgS5Vs1-9ccZEvISdCVqe5g';
ENV.googleAnalytics = { webPropertyId: 'G-8XNQMRFWPZ' };
ENV.sofiaurl = 'https://streep.csvalpha.nl';
ENV.sofiaUrl = 'https://streep.csvalpha.nl';
}

if (deployTarget === 'staging') {
ENV.clientId = 'D0HhpORylbWUgOBwyR-0GGDcfsi9PG6zSNgctW--f-4';
ENV.sofiaurl = 'https://stagingstreep.csvalpha.nl';
ENV.sofiaUrl = 'https://stagingstreep.csvalpha.nl';
}

return ENV;
Expand Down

0 comments on commit 9fc611a

Please sign in to comment.