Fix handling of recordings and switching cameras (#10351)

* Fix handling of recordings and switching cameras

* mobile switch

* Cleanup

* Cleanup autoplay

* Remove vite
This commit is contained in:
Nicolas Mowen
2024-03-10 07:17:09 -06:00
committed by GitHub
parent 9fc1286568
commit b910db4f05
4 changed files with 114 additions and 79 deletions

View File

@@ -5,7 +5,7 @@ type TWrapperProps = {
};
const Wrapper = ({ children }: TWrapperProps) => {
return <main className="w-screen h-screen overflow-hidden">{children}</main>;
return <main className="w-screen h-dvh overflow-hidden">{children}</main>;
};
export default Wrapper;