Skip to content
Merged
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 frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1813,8 +1813,8 @@
*/

function playerStateFromFrontendSnapshot(
snapshot: any,

Check warning on line 1816 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type

Check warning on line 1816 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type
relicSnapshot?: any

Check warning on line 1817 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type

Check warning on line 1817 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type
) {
const ownedRelicsMask =
Number(
Expand Down Expand Up @@ -2297,7 +2297,7 @@
return result;
}

function buildRandomNumbers(

Check warning on line 2300 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

'buildRandomNumbers' is defined but never used

Check warning on line 2300 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

'buildRandomNumbers' is defined but never used
requestKind: number
) {
let count = 1;
Expand Down Expand Up @@ -3416,7 +3416,7 @@
);
}

async function waitForCanonicalReceipt(

Check warning on line 3419 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

'waitForCanonicalReceipt' is defined but never used

Check warning on line 3419 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

'waitForCanonicalReceipt' is defined but never used
hash:
`0x${string}`
) {
Expand Down Expand Up @@ -3709,7 +3709,7 @@
return () => {
unwatchShreds();
unwatchHttpEvents();
vrfResultsRef.current.clear();

Check warning on line 3712 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

The ref value 'vrfResultsRef.current' will likely have changed by the time this effect cleanup function runs. If this ref points to a node rendered by React, copy 'vrfResultsRef.current' to a variable inside the effect, and use that variable in the cleanup function

Check warning on line 3712 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

The ref value 'vrfResultsRef.current' will likely have changed by the time this effect cleanup function runs. If this ref points to a node rendered by React, copy 'vrfResultsRef.current' to a variable inside the effect, and use that variable in the cleanup function
};
}, [
connectedAddress,
Expand Down Expand Up @@ -4375,7 +4375,7 @@
}
}

function extractRandomnessRequestId(

Check warning on line 4378 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

'extractRandomnessRequestId' is defined but never used

Check warning on line 4378 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

'extractRandomnessRequestId' is defined but never used
receipt:
Awaited<
ReturnType<
Expand Down Expand Up @@ -4986,7 +4986,7 @@
request: (args: {
method: string;
params?: unknown[];
}) => Promise<any>;

Check warning on line 4989 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type

Check warning on line 4989 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type
},
bundleId: string
) {
Expand Down Expand Up @@ -5128,7 +5128,7 @@
unknown[];
}
) =>
Promise<any>;

Check warning on line 5131 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type

Check warning on line 5131 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type
};

timingLog(
Expand All @@ -5143,7 +5143,7 @@
functionName,

args,
} as any);

Check warning on line 5146 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type

Check warning on line 5146 in frontend/app/page.tsx

View workflow job for this annotation

GitHub Actions / Next.js checks

Unexpected any. Specify a different type

let lastError:
unknown = null;
Expand Down Expand Up @@ -8218,9 +8218,9 @@

<div>
<RoomProgressLine room={currentRoom} isBoss={isBoss} />
<div className="practice-combat-card min-h-[610px] lg:grid lg:min-h-[480px] lg:grid-cols-[3fr_2fr]">
<div className="practice-combat-card min-h-[610px] lg:grid lg:min-h-[480px] lg:grid-cols-[minmax(0,3fr)_minmax(0,2fr)]">

<div className="practice-monster-stage relative h-[355px] min-w-0 overflow-hidden bg-gradient-to-b from-black/20 to-black/70 lg:h-full lg:min-h-[480px] lg:border-r lg:border-zinc-800">
<div className="practice-monster-stage relative h-[355px] w-full min-w-0 overflow-hidden bg-gradient-to-b from-black/20 to-black/70 lg:h-full lg:min-h-[480px] lg:border-r lg:border-zinc-800">

<img
src={
Expand Down
Loading