Update medication history days with toggle for convenience

This commit is contained in:
2026-01-16 17:06:12 +00:00
parent 5bd9780ac0
commit 7dc9972ab5
2 changed files with 37 additions and 12 deletions

View File

@@ -84,6 +84,7 @@ export interface UiSettings {
displayedDays: string;
showDayReferenceLines?: boolean;
showTherapeuticRange?: boolean;
steadyStateDaysEnabled?: boolean;
stickyChart: boolean;
}
@@ -154,6 +155,7 @@ export const getDefaultState = (): AppState => ({
simulationDays: '5',
displayedDays: '2',
showTherapeuticRange: true,
steadyStateDaysEnabled: true,
stickyChart: false,
}
});