1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Move skinBody class to root react element

This commit is contained in:
Bill Thornton 2022-10-12 17:19:36 -04:00
parent 09039303e6
commit 7e67d7b371
2 changed files with 2 additions and 6 deletions

View file

@ -162,11 +162,7 @@ const ConnectionRequired: FunctionComponent<ConnectionRequiredProps> = ({
return null;
}
return (
<div className='skinBody'>
<Outlet />
</div>
);
return <Outlet />;
};
export default ConnectionRequired;