custom board option only in developer mode

This commit is contained in:
MichaelDvP
2026-01-08 14:43:35 +01:00
parent dd0ea5df0e
commit fd0734d8d8

View File

@@ -503,9 +503,11 @@ const ApplicationSettings = () => {
boardProfileItems
)}
<Divider />
<MenuItem key={'CUSTOM'} value={'CUSTOM'}>
{LL.CUSTOM()}&hellip;
</MenuItem>
{(data.board_profile === 'CUSTOM' || data.developer_mode) && (
<MenuItem key={'CUSTOM'} value={'CUSTOM'}>
{LL.CUSTOM()}&hellip;
</MenuItem>
)}
</TextField>
{data.board_profile === 'CUSTOM' && (
<>