Skip to content

Commit

Permalink
ditto
Browse files Browse the repository at this point in the history
  • Loading branch information
polymorpher committed Jan 7, 2024
1 parent 12ad95f commit 385e350
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions code/client/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ module.exports = {
SENTRY_DSN: '', // dev
LOCAL_RELAYER_URL: '',
ROOT_URL: '',
LOGO_ID: '',
LOGO_LINK: '',
APP_LINK: '',
APP_NAME: '',
}),
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
Expand Down
10 changes: 5 additions & 5 deletions code/lib/config/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ const Constants = require('../constants')
const DEBUG = process.env.DEBUG

module.exports = {
appId: process.env.APP_ID ?? 'ONEWallet',
appName: process.env.APP_NAME ?? 'OTP Wallet',
logoId: process.env.LOGO_ID ?? 'modulo',
logoLink: process.env.LOGO_LINK ?? 'https://modulo.so',
appLink: process.env.APP_LINK ?? 'https://otpwallet.xyz/',
appId: process.env.APP_ID || 'ONEWallet',
appName: process.env.APP_NAME || 'OTP Wallet',
logoId: process.env.LOGO_ID || 'modulo',
logoLink: process.env.LOGO_LINK || 'https://modulo.so',
appLink: process.env.APP_LINK || 'https://otpwallet.xyz/',
version: `v0.${Constants.MajorVersion}.${Constants.MinorVersion}`,
lastLibraryUpdateVersion: `v0.${Constants.MajorVersion}.1`,
// lastLibraryUpdateVersion: `v0.16.0`, // use this for manual override
Expand Down

0 comments on commit 385e350

Please sign in to comment.