chore : bump all packages versions

This commit is contained in:
GuillaumeSD
2024-12-29 00:01:08 +01:00
parent 2db361e2f6
commit 0b8d0ad780
10 changed files with 2112 additions and 1149 deletions

View File

@@ -3,7 +3,7 @@ import { useEffect, useState } from "react";
export const useScreenSize = () => {
const [screenSize, setScreenSize] = useState({
width: document?.querySelector(".MuiGrid-root")?.clientWidth ?? 500,
height: window?.innerHeight - 120 ?? 500,
height: window ? window.innerHeight - 120 : 500,
});
useEffect(() => {