4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

remove logs

This commit is contained in:
PhilReact 2023-10-12 22:55:35 -05:00
parent 1022fa971a
commit 5de019e485
5 changed files with 0 additions and 6 deletions

View File

@ -52,7 +52,6 @@ height:undefined,
`;
stateChanged(state) {
console.log({state})
this.nodeStatus = state.app.nodeStatus
}

View File

@ -266,7 +266,6 @@ getMyNode(){
})
if(response && response.data && response.data.status === 'READY'){
const rawData = await this.getRawData()
console.log({rawData})
const object = {
...this.resource.schema.display
}

View File

@ -110,14 +110,12 @@ class FriendsFeed extends connect(store)(LitElement) {
}
const schemas = await this.getSchemas()
const friendList = JSON.parse(localStorage.getItem('friends-my-friend-list') || "[]")
console.log({friendList})
const names = friendList.map(friend => `name=${friend.name}`).join('&');
if(names.length === 0){
this.endpoints= []
this.endpointOffsets = Array(this.endpoints.length).fill(0);
return
}
console.log({names})
const baseurl = `${this.nodeUrl}/arbitrary/resources/search?reverse=true&exactmatchnames=true&${names}`
let formEndpoints = []
schemas.forEach((schema)=> {

View File

@ -218,7 +218,6 @@ class ChatGroupsManagement extends LitElement {
}
nameRenderer(person){
console.log({person})
return html`
<vaadin-horizontal-layout style="align-items: center;display:flex" theme="spacing">
<vaadin-avatar style="margin-right:5px" img="${person.pictureUrl}" .name="${person.displayName}"></vaadin-avatar>

View File

@ -522,7 +522,6 @@ class Chat extends LitElement {
if(sideEffectAction && sideEffectAction.type === 'openPrivateChat'){
const name = sideEffectAction.data.name
const address = sideEffectAction.data.address
console.log({address}, this.chatHeadsObj)
if(this.chatHeadsObj.direct && this.chatHeadsObj.direct.find(item=> item.address === address)){
this.setActiveChatHeadUrl(`direct/${address}`)
window.parent.reduxStore.dispatch(