diff --git a/react/features/filmstrip/components/native/ModeratorIndicator.tsx b/react/features/filmstrip/components/native/ModeratorIndicator.tsx
index f7ba32859..e8a78ae14 100644
--- a/react/features/filmstrip/components/native/ModeratorIndicator.tsx
+++ b/react/features/filmstrip/components/native/ModeratorIndicator.tsx
@@ -10,8 +10,8 @@ import { BaseIndicator } from '../../../base/react';
*
* @returns {JSX.Element}
*/
-export default function MoeratorIndicator(): JSX.Element {
- return (
-
- );
-}
+const ModeratorIndicator = (): JSX.Element => (
+
+);
+
+export default ModeratorIndicator;
diff --git a/react/features/filmstrip/components/web/ModeratorIndicator.tsx b/react/features/filmstrip/components/web/ModeratorIndicator.tsx
index ce270b084..0639a4613 100644
--- a/react/features/filmstrip/components/web/ModeratorIndicator.tsx
+++ b/react/features/filmstrip/components/web/ModeratorIndicator.tsx
@@ -1,7 +1,9 @@
+/* eslint-disable lines-around-comment */
+
import React from 'react';
+// @ts-ignore
import { IconModerator } from '../../../base/icons';
-// eslint-disable-next-line lines-around-comment
// @ts-ignore
import { BaseIndicator } from '../../../base/react';