From 2375633bca7cc62e0b76235a63bd39bbe50eb95c Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 24 Nov 2025 22:35:07 +0100 Subject: [PATCH] don't show confusing release type checkboxes --- interface/src/app/status/Version.tsx | 47 +++------------------------- 1 file changed, 5 insertions(+), 42 deletions(-) diff --git a/interface/src/app/status/Version.tsx b/interface/src/app/status/Version.tsx index 492ebce2c..ace627042 100644 --- a/interface/src/app/status/Version.tsx +++ b/interface/src/app/status/Version.tsx @@ -511,48 +511,11 @@ const Version = () => { {LL.RELEASE_TYPE()} - - - } - slotProps={{ - typography: { - color: 'grey' - } - }} - checked={!isDev} - label={LL.STABLE()} - sx={{ '& .MuiSvgIcon-root': { fontSize: 16 } }} - /> - - } - slotProps={{ - typography: { - color: 'grey' - } - }} - checked={isDev} - label={LL.DEVELOPMENT()} - sx={{ '& .MuiSvgIcon-root': { fontSize: 16 } }} - /> - + {isDev ? ( + {LL.DEVELOPMENT()} + ) : ( + {LL.STABLE()} + )} {internetLive ? (