Update therapeutic range settings add toggle

This commit is contained in:
2026-01-08 18:09:26 +00:00
parent bd5bb647b2
commit c7a3068e1c
6 changed files with 56 additions and 35 deletions

View File

@@ -48,6 +48,7 @@ export interface UiSettings {
simulationDays: string;
displayedDays: string;
showDayReferenceLines?: boolean;
showTherapeuticRange?: boolean;
}
export interface AppState {
@@ -106,5 +107,6 @@ export const getDefaultState = (): AppState => ({
yAxisMax: '13',
simulationDays: '5',
displayedDays: '2',
showTherapeuticRange: true,
}
});