Skip to content

Commit

Permalink
redcued logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek-Beta committed Nov 29, 2024
1 parent 6aa8207 commit 883af1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/theme/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ function Header({
useEffect(() => {
const updateDeviceType = () => {
const width = window.innerWidth;
setIsMobile(width < 435);
setIsTablet(width >= 435 && width <= 768);
setIsMobile(width < 461);
setIsTablet(width >= 461 && width <= 768);
};

updateDeviceType();
Expand Down

0 comments on commit 883af1e

Please sign in to comment.