We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4bbd89 commit 647ff5fCopy full SHA for 647ff5f
1 file changed
static/js/index.js
@@ -289,7 +289,11 @@ window.PageEvents = {
289
if (this.g.user.wallets.length) {
290
this.getTickets()
291
this.getEvents()
292
- this.currencies = ['sats', ...g.allowedCurrencies]
+ if (g.allowedCurrencies && g.allowedCurrencies.length) {
293
+ this.currencies = ['sats', ...g.allowedCurrencies]
294
+ } else {
295
+ this.currencies = ['sats', ...g.currencies]
296
+ }
297
}
298
299
0 commit comments