mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
🆙 Fix screen offset being stale after resize
This commit is contained in:
@@ -43,10 +43,11 @@ export const RoomView: FC<{}> = (props) =>
|
||||
<AnimatePresence>
|
||||
{
|
||||
<motion.div
|
||||
className="w-full h-full"
|
||||
initial={ { opacity: 0 }}
|
||||
animate={ { opacity: 1 }}
|
||||
exit={ { opacity: 0 }}>
|
||||
<div ref={ elementRef } className="w-100 h-100">
|
||||
<div ref={ elementRef } className="w-full h-full">
|
||||
{ roomSession instanceof RoomSession &&
|
||||
<>
|
||||
<RoomWidgetsView />
|
||||
|
||||
Reference in New Issue
Block a user