Skip to content

Commit

Permalink
Merge branch 'main' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
mluena authored Oct 2, 2024
2 parents e9bd78f + 14525b9 commit 3bee3e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/app/(app)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default async function AppLayout({ children }: PropsWithChildren) {
return (
<LayoutProviders>
<Hydrate state={dehydratedState}>
<main className="flex h-[100svh] w-full justify-between">
<main className="flex h-[100svh] min-h-[100vh] w-full justify-between">
<Navigation />
<Sidebar>{children}</Sidebar>
<Map />
Expand Down
3 changes: 1 addition & 2 deletions client/src/containers/welcome-message/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import { useEffect, useRef, useState } from "react";

import isEmpty from "lodash-es/isEmpty";

import { useCookies } from "react-cookie";
import ReactPlayer from "react-player";

Expand Down Expand Up @@ -45,6 +43,7 @@ export default function WelcomeMessage() {
const handleFullscreen = () => {
setFullscreen(screenfull?.isFullscreen);
};

useEffect(() => {
if (screenfull.isEnabled) {
screenfull.on("change", handleFullscreen);
Expand Down

0 comments on commit 3bee3e9

Please sign in to comment.