diff --git a/custom/fitness-demo/components/Call/Room.js b/custom/fitness-demo/components/Call/Room.js
index 4dbdf79..2ba2617 100644
--- a/custom/fitness-demo/components/Call/Room.js
+++ b/custom/fitness-demo/components/Call/Room.js
@@ -1,17 +1,6 @@
import React from 'react';
-import VideoContainer from '@custom/shared/components/VideoContainer/VideoContainer';
-
-import { Container } from './Container';
-import { Header } from './Header';
import { VideoView } from './VideoView';
-export function Room({ children }) {
- return (
-
-
- {children ? children : }
-
- );
-}
+export const Room = () => ;
export default Room;
diff --git a/custom/fitness-demo/components/GridView/GridView.js b/custom/fitness-demo/components/GridView/GridView.js
index dbd3440..a3be7b5 100644
--- a/custom/fitness-demo/components/GridView/GridView.js
+++ b/custom/fitness-demo/components/GridView/GridView.js
@@ -7,6 +7,7 @@ import React, {
} from 'react';
import Button from '@custom/shared/components/Button';
import Tile from '@custom/shared/components/Tile';
+import VideoContainer from '@custom/shared/components/VideoContainer';
import {
DEFAULT_ASPECT_RATIO,
MEETING_STATE_JOINED,
@@ -20,6 +21,8 @@ import { ReactComponent as IconArrow } from '@custom/shared/icons/raquo-md.svg';
import sortByKey from '@custom/shared/lib/sortByKey';
import PropTypes from 'prop-types';
import { useDeepCompareMemo } from 'use-deep-compare';
+import Container from '../Call/Container';
+import Header from '../Call/Header';
// --- Constants
@@ -294,69 +297,74 @@ export const GridView = ({
const handleNextClick = () => setPage((p) => p + 1);
return (
-
- {(pages > 1 && page > 1) && (
-
- )}
-
{tiles}
- {(pages > 1 && page < pages) && (
-
- )}
+
+
+
+
+ {(pages > 1 && page > 1) && (
+
+ )}
+
{tiles}
+ {(pages > 1 && page < pages) && (
+
+ )}
-
-
+
+
+
+
);
};
diff --git a/custom/fitness-demo/components/Prejoin/Intro.js b/custom/fitness-demo/components/Prejoin/Intro.js
index f7cce1a..6a7ee9a 100644
--- a/custom/fitness-demo/components/Prejoin/Intro.js
+++ b/custom/fitness-demo/components/Prejoin/Intro.js
@@ -118,7 +118,7 @@ export const Intro = ({
/>
-
+