skip blured paper component when in systemMonitor

This commit is contained in:
proddy
2026-01-06 22:04:54 +01:00
parent 949172128f
commit e8fbbe5a1c
7 changed files with 17 additions and 11 deletions

View File

@@ -397,10 +397,12 @@ const NetworkSettings = () => {
);
};
return (
return restarting ? (
<SystemMonitor />
) : (
<SectionContent>
{blocker ? <BlockNavigation blocker={blocker} /> : null}
{restarting ? <SystemMonitor /> : content()}
{content()}
</SectionContent>
);
};