Skip to content

Commit

Permalink
Merge pull request #201 from ton-blockchain/ton_access_fix
Browse files Browse the repository at this point in the history
Ton access fix
  • Loading branch information
EmelyanenkoK authored Dec 18, 2023
2 parents 1af1108 + d2fed82 commit ab34453
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 22 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.10",
"@orbs-network/ton-access": "^2.3.0",
"@orbs-network/ton-access": "^2.3.3",
"@tact-lang/compiler": "^1.1.2",
"@tanstack/react-query": "^4.13.0",
"@ton-community/contract-verifier-sdk": "^1.1.1",
"@ton-community/contract-verifier-sdk": "1.1.2",
"@ton-community/func-js": "^0.3.0",
"@tonconnect/ui-react": "^1.0.0-beta.6",
"bigint-buffer": "^1.1.5",
Expand Down
10 changes: 4 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,10 @@ function App() {
</OverflowingBox>
)}

{!isLoading && (
<ContractDataBox isMobile={isSmallScreen}>
<ContractBlock />
{proofData?.hasOnchainProof && <CompilerBlock />}
</ContractDataBox>
)}
<ContractDataBox isMobile={isSmallScreen}>
<ContractBlock />
{proofData?.hasOnchainProof && <CompilerBlock />}
</ContractDataBox>
{showSkeleton && (
<OverflowingBox sx={{ padding: "30px 24px 24px 24px" }} mb={3}>
<CenteringBox mb={3}>
Expand Down

0 comments on commit ab34453

Please sign in to comment.