Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Dec 12, 2024
2 parents 9c20e36 + 32dd7ab commit cb4ca20
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/dojo/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export async function setup({ ...config }: DojoConfig) {
network.contractComponents.events as any,
undefined,
[],
20_000,
40_000,
false,
false,
);
Expand Down
1 change: 1 addition & 0 deletions client/src/ui/modules/LoadingScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export const LoadingScreen = ({ backgroundImage }: { backgroundImage: string })
<OnboardingContainer backgroundImage={backgroundImage} controller={false}>
<StepContainer tos={false} transition={false} loading={true}>
<div className="mt-10 relative bottom-1 text-center text-xl">{`${statements[currentStatement]}`}</div>
<div className="relative bottom-1 text-center text-xl">{`We are experiencing high loading times. Please be patient.`}</div>
</StepContainer>
</OnboardingContainer>
);
Expand Down
5 changes: 2 additions & 3 deletions client/src/ui/modules/navigation/LeftNavigationModule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { motion } from "framer-motion";
import { Suspense, lazy, memo, useEffect, useMemo } from "react";
import { construction, military, trade, worldStructures } from "../../components/navigation/Config";
import CircleButton from "../../elements/CircleButton";
import { Chat } from "../chat/Chat";

const EntityDetails = lazy(() =>
import("../entity-details/EntityDetails").then((module) => ({ default: module.EntityDetails })),
Expand Down Expand Up @@ -261,11 +260,11 @@ export const LeftNavigationModule = memo(() => {
</motion.div>
</div>
</div>
{!IS_MOBILE && (
{/* {!IS_MOBILE && (
<div className="flex">
<Chat />
</div>
)}
)} */}
</div>
);
});
Expand Down
1 change: 1 addition & 0 deletions landing/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ if (!rootElement.innerHTML) {
<div className="flex flex-col items-center animate-pulse">
<img src="/images/eternumloader.png" className="w-32 sm:w-24 lg:w-24 xl:w-28 2xl:mt-2 mx-auto my-8" />
<TypeH1 className="text-center mt-4 text-ellipsis">Loading...</TypeH1>
<div className="relative bottom-1 text-center text-xl">{`We are experiencing high loading times. Please be patient.`}</div>
</div>
</div>,
);
Expand Down

0 comments on commit cb4ca20

Please sign in to comment.