diff --git a/src/html/confirmation-modal.html b/src/html/confirmation-modal.html
index 2c3557c..1d9fff1 100644
--- a/src/html/confirmation-modal.html
+++ b/src/html/confirmation-modal.html
@@ -2,10 +2,11 @@
Login
- Attempting to pair device with address
+ Do you want to pair device?
+
Confirm
diff --git a/src/services/routing.service.ts b/src/services/routing.service.ts
index 961bd5b..acf50d1 100644
--- a/src/services/routing.service.ts
+++ b/src/services/routing.service.ts
@@ -50,8 +50,8 @@ export default class Routing {
let members = roles['owner']['members'];
console.log(members);
let html = confirmationModalHtml;
- html = html.replace('{{device1}}', members[0]['sp_addresses'][0]);
- html = html.replace('{{device2}}', members[0]['sp_addresses'][1]);
+ // html = html.replace('{{device1}}', members[0]['sp_addresses'][0]);
+ // html = html.replace('{{device2}}', members[0]['sp_addresses'][1]);
this.currentOutpoint = outpointCommitment as string;
const container = document.querySelector('.page-container');