diff --git a/src/components/menus/dashboard/controls/index.tsx b/src/components/menus/dashboard/controls/index.tsx
index 337823c..f715fdf 100644
--- a/src/components/menus/dashboard/controls/index.tsx
+++ b/src/components/menus/dashboard/controls/index.tsx
@@ -9,7 +9,7 @@ import {
export const Controls = ({ isEnabled }: ControlsProps): JSX.Element => {
if (!isEnabled) {
- return ;
+ return null;
}
return (
diff --git a/src/components/menus/dashboard/directories/index.tsx b/src/components/menus/dashboard/directories/index.tsx
index 2652e5a..24443ce 100644
--- a/src/components/menus/dashboard/directories/index.tsx
+++ b/src/components/menus/dashboard/directories/index.tsx
@@ -4,7 +4,7 @@ import { LeftLink1, LeftLink2, LeftLink3, RightLink1, RightLink2, RightLink3 } f
export const Directories = ({ isEnabled }: DirectoriesProps): JSX.Element => {
if (!isEnabled) {
- return ;
+ return null;
}
return (
diff --git a/src/components/menus/dashboard/shortcuts/index.tsx b/src/components/menus/dashboard/shortcuts/index.tsx
index 76fa7dd..a6825a4 100644
--- a/src/components/menus/dashboard/shortcuts/index.tsx
+++ b/src/components/menus/dashboard/shortcuts/index.tsx
@@ -6,7 +6,7 @@ export const Shortcuts = ({ isEnabled }: ShortcutsProps): JSX.Element => {
recordingPoller.initialize();
if (!isEnabled) {
- return ;
+ return null;
}
return (
diff --git a/src/components/menus/dashboard/stats/index.tsx b/src/components/menus/dashboard/stats/index.tsx
index f044989..54e612c 100644
--- a/src/components/menus/dashboard/stats/index.tsx
+++ b/src/components/menus/dashboard/stats/index.tsx
@@ -15,7 +15,7 @@ initializePollers(cpuService, ramService, gpuService, storageService);
export const Stats = ({ isEnabled }: StatsProps): JSX.Element => {
if (!isEnabled) {
- return ;
+ return null;
}
return (