diff --git a/src/components/ConfigurationList.tsx b/src/components/ConfigurationList.tsx index e4e6379..725c0c0 100644 --- a/src/components/ConfigurationList.tsx +++ b/src/components/ConfigurationList.tsx @@ -4,7 +4,8 @@ import { type Configuration, type DayEnum, numberAsDay, - ParsedTime + ParsedTime, + isTimeMatched } from '@/timing'; import clsx from 'clsx'; @@ -87,7 +88,7 @@ const ConfigurationItem: FunctionComponent<{ : 'text-yellow-900 bg-yellow-500/80' )} > - Not Current + {isCurrent ? 'Current' : 'Not Current'}
@@ -131,7 +132,7 @@ const ConfigurationList: FunctionComponent