Skip to content

Commit

Permalink
revert live uptime uncheck
Browse files Browse the repository at this point in the history
  • Loading branch information
damienen committed Oct 30, 2023
1 parent f3ee8d2 commit 82f3d55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-dex",
"version": "1.7.4",
"version": "1.7.5",
"description": "The Itheum Data DEX enables you to trade your data using web3 tech",
"dependencies": {
"@chakra-ui/icons": "2.1.1",
Expand Down
3 changes: 1 addition & 2 deletions src/components/UtilComps/DataNFTLiveUptime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const DataNFTLiveUptime = (props: DataNFTLiveUptimeProps) => {

props.handleFlagAsFailed(true);

let _isLiveUptimeSuccessful = true; // HOTFIX: TODO - REMOVE!
let _isLiveUptimeSuccessful = false;
try {
const res = await fetch(`${props.dataMarshal}/uptime?NFTId=${props.NFTId}&chainId=E${chainID}`);
const data = await res.json();
Expand Down Expand Up @@ -66,7 +66,6 @@ const DataNFTLiveUptime = (props: DataNFTLiveUptimeProps) => {
setLiveUptimeFAILMsg(labels.ERR_PROCURE_UPTIME_CHECK_DOWN);
}

setLiveUptimeFAILMsg(null); // // HOTFIX: TODO - REMOVE!
setLiveUptimeCheckInProgress(false);
props.setIsLiveUptimeSuccessful(_isLiveUptimeSuccessful);
}
Expand Down

0 comments on commit 82f3d55

Please sign in to comment.