Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use custom fork for socket to work #1533

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-dex",
"version": "1.18.10",
"version": "1.18.11",
"description": "The Itheum Data DEX enables you to trade your data using web3 tech",
"dependencies": {
"@chakra-ui/icons": "2.1.1",
Expand All @@ -11,7 +11,7 @@
"@itheum/sdk-mx-data-nft": "3.8.0-alpha.12",
"@itheum/sdk-mx-enterprise": "0.3.0",
"@multiversx/sdk-core": "13.14.2",
"@multiversx/sdk-dapp": "3.0.10",
"@multiversx/sdk-dapp": "npm:@bucurdavid/[email protected]",
"@peerme/sdk": "0.2.1",
"@sentry/react": "7.118.0",
"@tanstack/match-sorter-utils": "8.15.1",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/App/Launcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ function Launcher() {
const [launchModeSession, setLaunchModeSession] = useLocalStorage("itm-launch-mode", null);
const [launchMode, setLaunchMode] = useState(launchModeSession || "no-auth");
const [redirectToRoute, setRedirectToRoute] = useState<null | string>(null);

// hoisting launchModeControl here allows us to go multi-chain easier in future
// ... have a look at git history on this component
const handleLaunchMode = (chainOption: string, redirectToRouteStr?: string) => {
Expand Down Expand Up @@ -47,6 +46,7 @@ function Launcher() {
walletConnectV2ProjectId,
apiTimeout: uxConfig.mxAPITimeoutMs,
apiAddress: mvxRpcApiToUse,
skipFetchFromServer: true, // these values are static until they change something at the core level, which should be be announced
}}
dappConfig={{
shouldUseWebViewProvider: true,
Expand Down