Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
corrected the indentation of the modified code
Browse files Browse the repository at this point in the history
  • Loading branch information
prasanthp96 committed Aug 10, 2017
1 parent 16a3e98 commit c742c02
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/channel.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ if (!channels.has(channel)) {

exports.channel = () => {
let channelMapping = {
'dev': 'Release',
'beta': 'Beta'
'dev': 'Release',
'beta': 'Beta'
}

return Object.keys(channelMapping).includes(channel) ? channelMapping[channel] : channel
return Object.keys(channelMapping).includes(channel) ? channelMapping[channel] : channel
}

exports.browserLaptopRev = () => process.env.NODE_ENV === 'development'
Expand Down

0 comments on commit c742c02

Please sign in to comment.