From 3792b90460980a4ea0b12417658dd2ab7a889211 Mon Sep 17 00:00:00 2001
From: raschel <38816784+aymericdelab@users.noreply.github.com>
Date: Wed, 11 Dec 2024 20:39:47 +0100
Subject: [PATCH] next (#2437)
* raise limits and remove chat (#2435)
* loading page loading itmes (#2436)
---------
Co-authored-by: tedison <76473430+edisontim@users.noreply.github.com>
---
client/src/dojo/setup.ts | 4 ++--
client/src/ui/modules/LoadingScreen.tsx | 1 +
client/src/ui/modules/navigation/LeftNavigationModule.tsx | 5 ++---
landing/src/main.tsx | 1 +
4 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/client/src/dojo/setup.ts b/client/src/dojo/setup.ts
index 2df39000c..1143c47f4 100644
--- a/client/src/dojo/setup.ts
+++ b/client/src/dojo/setup.ts
@@ -15,13 +15,13 @@ export async function setup({ ...config }: DojoConfig) {
const systemCalls = createSystemCalls(network);
// fetch all existing entities from torii
- const sync = await getSyncEntities(network.toriiClient, network.contractComponents as any, undefined, [], 10_000);
+ const sync = await getSyncEntities(network.toriiClient, network.contractComponents as any, undefined, [], 20_000);
const eventSync = getSyncEvents(
network.toriiClient,
network.contractComponents.events as any,
undefined,
[],
- 20_000,
+ 40_000,
false,
false,
);
diff --git a/client/src/ui/modules/LoadingScreen.tsx b/client/src/ui/modules/LoadingScreen.tsx
index 04fb67342..aea959348 100644
--- a/client/src/ui/modules/LoadingScreen.tsx
+++ b/client/src/ui/modules/LoadingScreen.tsx
@@ -47,6 +47,7 @@ export const LoadingScreen = ({ backgroundImage }: { backgroundImage: string })