no whitespace

This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-30 15:15:04 +01:00
parent ddf5cb40e8
commit fededccbff

View File

@@ -74,7 +74,7 @@ export default {
if (navigator.userAgent.includes("iPhone")) {
return (
"https://qr.vipps.no/28/2/01/031/47" +
this.phone +
this.phone.replace(/ /g, "") +
"?v=1&m=" +
this.message +
"&a=" +
@@ -84,7 +84,7 @@ export default {
return (
"https://qr.vipps.no/28/2/01/031/47" +
this.phone +
this.phone.replace(/ /g, "") +
"?v=1&m=" +
this.message
);