diff --git a/interface/src/app/main/Customizations.tsx b/interface/src/app/main/Customizations.tsx
index a387774cc..21711380e 100644
--- a/interface/src/app/main/Customizations.tsx
+++ b/interface/src/app/main/Customizations.tsx
@@ -788,10 +788,12 @@ const Customizations = () => {
>
);
- return (
+ return restarting ? (
+
+ ) : (
{blocker ? : null}
- {restarting ? : renderContent()}
+ {renderContent()}
{selectedDeviceEntity && (
{
);
};
- return (
+ return restarting ? (
+
+ ) : (
{blocker ? : null}
- {restarting ? : content()}
+ {content()}
);
};
diff --git a/interface/src/app/settings/Settings.tsx b/interface/src/app/settings/Settings.tsx
index 608c37ee9..a8130bb24 100644
--- a/interface/src/app/settings/Settings.tsx
+++ b/interface/src/app/settings/Settings.tsx
@@ -182,7 +182,7 @@ const Settings = () => {
restarting
]);
- return {restarting ? : content};
+ return restarting ? : {content};
};
export default Settings;
diff --git a/interface/src/app/settings/network/NetworkSettings.tsx b/interface/src/app/settings/network/NetworkSettings.tsx
index 5f525a992..92651c654 100644
--- a/interface/src/app/settings/network/NetworkSettings.tsx
+++ b/interface/src/app/settings/network/NetworkSettings.tsx
@@ -397,10 +397,12 @@ const NetworkSettings = () => {
);
};
- return (
+ return restarting ? (
+
+ ) : (
{blocker ? : null}
- {restarting ? : content()}
+ {content()}
);
};
diff --git a/interface/src/app/status/Status.tsx b/interface/src/app/status/Status.tsx
index be5427785..1d87a5d4d 100644
--- a/interface/src/app/status/Status.tsx
+++ b/interface/src/app/status/Status.tsx
@@ -443,7 +443,7 @@ const SystemStatus = () => {
renderRestartDialog
]);
- return {restarting ? : content};
+ return restarting ? : {content};
};
export default SystemStatus;
diff --git a/interface/src/app/status/SystemMonitor.tsx b/interface/src/app/status/SystemMonitor.tsx
index 492049074..7e7c289af 100644
--- a/interface/src/app/status/SystemMonitor.tsx
+++ b/interface/src/app/status/SystemMonitor.tsx
@@ -103,8 +103,8 @@ const SystemMonitor = () => {
height: '100vh',
display: 'flex',
alignItems: 'center',
- justifyContent: 'center',
- backdropFilter: 'blur(8px)'
+ justifyContent: 'center'
+ // backdropFilter: 'blur(8px)'
}}
>
{
installPartitionFirmware
]);
- return {restarting ? : content};
+ return restarting ? : {content};
};
export default memo(Version);