We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63615e3 commit ef2f17aCopy full SHA for ef2f17a
html-templates/verified_credentials.html
@@ -299,7 +299,7 @@ <h5 v-if="state.showScanned" class="fw-bolder mb-3">
299
PREFIX_MOBILE = 'Mobile ';
300
// @type string
301
const b = uap.getResult().browser.name
302
- const browserName = b.startsWith(PREFIX_MOBILE) ? b.split(" ")[1] : b
+ const browserName = b.startsWith(PREFIX_MOBILE) ? b.split(" ")[1] : b.split(" ")[0]
303
return `{{wallet_deep_link}}?browser=${browserName.toUpperCase()}`;
304
}
305
console.log(`Detected Browser: ${uap.getResult().browser.name}`)
0 commit comments