Browse Source

remove logs

pull/127/head
Phillip Lang Martinez 2 years ago
parent
commit
bb1083b89b
  1. 4
      qortal-ui-core/src/components/app-info.js
  2. 3
      qortal-ui-plugins/plugins/core/components/ChatPage.js

4
qortal-ui-core/src/components/app-info.js

@ -147,6 +147,10 @@ class AppInfo extends connect(store)(LitElement) {
if (!stop) {
stop = true;
try {
if(this.publicKeyisOnChainConfirmation){
clearInterval(this.interval)
return
}
const myNode = store.getState().app.nodeConfig.knownNodes[store.getState().app.nodeConfig.node];
const nodeUrl = myNode.protocol + '://' + myNode.domain + ':' + myNode.port;
const url = `${nodeUrl}/addresses/publickey/${address}`;

3
qortal-ui-plugins/plugins/core/components/ChatPage.js

@ -701,7 +701,6 @@ class ChatPage extends LitElement {
}
render() {
console.log(5, 'Chat Page Here');
return html`
<div class="chat-container">
<div>
@ -838,7 +837,6 @@ class ChatPage extends LitElement {
<button
class="modal-button"
@click=${()=> {
console.log("image here");
const chatTextEditor = this.shadowRoot.getElementById('chatTextCaption')
chatTextEditor.sendMessageFunc({
type: 'image',
@ -1720,7 +1718,6 @@ class ChatPage extends LitElement {
}
}
console.log(outSideMsg);
// have params to determine if it's a reply or not
// have variable to determine if it's a response, holds signature in constructor
// need original message signature

Loading…
Cancel
Save