diff --git a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx
index b7f381e45..97ffb4000 100644
--- a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx
+++ b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx
@@ -87,7 +87,7 @@ function LiveSessionList(props: Props) {
-
+
Live Sessions
{/* {numberWithCommas(total)} */}
diff --git a/frontend/app/components/shared/ReloadButton/ReloadButton.tsx b/frontend/app/components/shared/ReloadButton/ReloadButton.tsx
index 8ae36a8f1..3e7cf90a6 100644
--- a/frontend/app/components/shared/ReloadButton/ReloadButton.tsx
+++ b/frontend/app/components/shared/ReloadButton/ReloadButton.tsx
@@ -1,22 +1,24 @@
-import React from 'react'
-import { CircularLoader, Icon } from 'UI'
-import cn from 'classnames'
+import React from 'react';
+import { CircularLoader, Icon, Popup } from 'UI';
+import cn from 'classnames';
interface Props {
- loading?: boolean
- onClick: () => void
- iconSize?: number
- iconName?: string
- className?: string
+ loading?: boolean;
+ onClick: () => void;
+ iconSize?: number;
+ iconName?: string;
+ className?: string;
}
export default function ReloadButton(props: Props) {
- const { loading, onClick, iconSize = "14", iconName = "sync-alt", className = '' } = props
- return (
-
- { loading ? : }
-
- )
+ const { loading, onClick, iconSize = '14', iconName = 'sync-alt', className = '' } = props;
+ return (
+
+
+ {loading ? : }
+
+
+ );
}