diff --git a/src/@utils/accessDetailsAndPricing.ts b/src/@utils/accessDetailsAndPricing.ts index 12db101a3..6ce344d9c 100644 --- a/src/@utils/accessDetailsAndPricing.ts +++ b/src/@utils/accessDetailsAndPricing.ts @@ -176,8 +176,6 @@ function getAccessDetailsFromTokenPrice( const order = tokenPrice.orders[0] const reusedOrder = order && order.reuses && order.reuses.length > 0 ? order.reuses[0] : null - console.log('order', order) - console.log('reusedOrder', reusedOrder) // asset is owned if there is an order and asset has timeout 0 (forever) or if the condition is valid accessDetails.isOwned = timeout === 0 || Date.now() / 1000 - order.createdTimestamp < timeout diff --git a/src/components/Asset/AssetActions/Compute/index.tsx b/src/components/Asset/AssetActions/Compute/index.tsx index d4bdb9ccc..db1bee221 100644 --- a/src/components/Asset/AssetActions/Compute/index.tsx +++ b/src/components/Asset/AssetActions/Compute/index.tsx @@ -373,7 +373,6 @@ export default function Compute({ } LoggerInstance.log('[compute] Starting compute job response: ', response) setIsPublished(true) - console.log('setRefatchJobs true') setRefatchJobs(!refatchJobs) initPriceAndFees() } catch (error) { diff --git a/src/components/Profile/History/ComputeJobs/index.tsx b/src/components/Profile/History/ComputeJobs/index.tsx index 0f4a23e75..3d33c65c7 100644 --- a/src/components/Profile/History/ComputeJobs/index.tsx +++ b/src/components/Profile/History/ComputeJobs/index.tsx @@ -113,7 +113,6 @@ export default function ComputeJobs({ }, [fetchJobs]) useEffect(() => { - console.log('use effect ', refatchJobs) fetchJobs() }, [refatchJobs])