mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-20 10:05:56 +00:00
remove logs
This commit is contained in:
parent
893eafbdeb
commit
a79eef6154
@ -69,7 +69,6 @@ export const MessageQueueProvider = ({ children }) => {
|
||||
});
|
||||
|
||||
updatedChats[groupDirectId] = updatedChats[groupDirectId].filter((chat) => {
|
||||
console.log('chatstasu', chat)
|
||||
return chat?.status !== 'failed-permanent'
|
||||
});
|
||||
|
||||
|
@ -2899,7 +2899,6 @@ function setupMessageListener() {
|
||||
|
||||
break;
|
||||
default:
|
||||
console.error("Unknown action:", request.action);
|
||||
break;
|
||||
}
|
||||
});
|
||||
|
@ -268,7 +268,6 @@ export const AppsDesktop = ({ mode, setMode, show , myName, goToHome, setDesktop
|
||||
} else {
|
||||
setSelectedTab(copyTabs[0]);
|
||||
}
|
||||
console.log('copyTabs', copyTabs)
|
||||
setTabs(copyTabs);
|
||||
setSelectedTab(copyTabs[0]);
|
||||
setTimeout(() => {
|
||||
|
@ -137,7 +137,6 @@ export const AppsNavBarDesktop = () => {
|
||||
item?.name === selectedTab?.name && item?.service === selectedTab?.service
|
||||
);
|
||||
|
||||
console.log('tabs', tabs)
|
||||
return (
|
||||
<AppsNavBarParent
|
||||
sx={{
|
||||
|
@ -77,7 +77,6 @@ export const saveFileInChunks = async (
|
||||
isFirstChunk = false;
|
||||
}
|
||||
|
||||
console.log('File saved successfully in chunks:', fullFileName);
|
||||
} catch (error) {
|
||||
console.error('Error saving file in chunks:', error);
|
||||
}
|
||||
|
@ -4,7 +4,6 @@ import './styles.css';
|
||||
import { executeEvent } from '../../utils/events';
|
||||
|
||||
const extractComponents = (url) => {
|
||||
console.log('url', url);
|
||||
if (!url.startsWith("qortal://")) {
|
||||
return null;
|
||||
}
|
||||
|
@ -1611,7 +1611,6 @@ export const Group = ({
|
||||
}
|
||||
};
|
||||
|
||||
console.log('desktopViewMode', desktopViewMode)
|
||||
|
||||
const renderDirects = () => {
|
||||
return (
|
||||
|
@ -9,7 +9,6 @@ export const WebSocketActive = ({ myAddress, setIsLoadingGroups }) => {
|
||||
const initiateRef = useRef(null)
|
||||
const forceCloseWebSocket = () => {
|
||||
if (socketRef.current) {
|
||||
console.log('Force closing the WebSocket');
|
||||
clearTimeout(timeoutIdRef.current);
|
||||
clearTimeout(groupSocketTimeoutRef.current);
|
||||
socketRef.current.close(1000, 'forced');
|
||||
|
@ -101,7 +101,6 @@ export const Save = ({ isDesktop, disableWidth }) => {
|
||||
console.error("Failed qortalRequest", error);
|
||||
});
|
||||
});
|
||||
console.log('encryptData', encryptData)
|
||||
if (encryptData && !encryptData?.error) {
|
||||
const fee = await getFee("ARBITRARY");
|
||||
|
||||
@ -139,7 +138,6 @@ export const Save = ({ isDesktop, disableWidth }) => {
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.log('errorsave', error)
|
||||
setInfoSnack({
|
||||
type: "error",
|
||||
message: error?.message || "Unable to save to QDN",
|
||||
|
@ -654,9 +654,7 @@ export const isRunningGateway = async ()=> {
|
||||
}
|
||||
case "IS_USING_GATEWAY": {
|
||||
try {
|
||||
console.log('isusing going')
|
||||
let isGateway = await isRunningGateway()
|
||||
console.log('isGateway', isGateway)
|
||||
event.source.postMessage({
|
||||
requestId: request.requestId,
|
||||
action: request.action,
|
||||
@ -664,7 +662,6 @@ export const isRunningGateway = async ()=> {
|
||||
type: "backgroundMessageResponse",
|
||||
}, event.origin);
|
||||
} catch (error) {
|
||||
console.log('isusing going', error)
|
||||
event.source.postMessage({
|
||||
requestId: request.requestId,
|
||||
action: request.action,
|
||||
|
@ -6,7 +6,6 @@ import Base58 from '../deps/Base58'
|
||||
import utils from '../utils/utils'
|
||||
|
||||
const signTradeBotTransaction = async (unsignedTxn, keyPair) => {
|
||||
console.log('keypair', unsignedTxn, keyPair)
|
||||
if (!unsignedTxn) {
|
||||
throw new Error('Unsigned Transaction Bytes not defined')
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user