From 28d346eafbf0232cc7e2c8907225c18fc70b31e1 Mon Sep 17 00:00:00 2001 From: Palash Gupta Date: Mon, 25 Sep 2023 18:53:27 +0000 Subject: [PATCH] feat: default options is updated (#3607) Co-authored-by: Vishal Sharma --- frontend/src/container/TopNav/DateTimeSelection/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/container/TopNav/DateTimeSelection/config.ts b/frontend/src/container/TopNav/DateTimeSelection/config.ts index 1b4a3cdfb5..2aaf3e1c19 100644 --- a/frontend/src/container/TopNav/DateTimeSelection/config.ts +++ b/frontend/src/container/TopNav/DateTimeSelection/config.ts @@ -53,10 +53,10 @@ export const ServiceMapOptions: Option[] = [ export const getDefaultOption = (route: string): Time => { if (route === ROUTES.SERVICE_MAP) { - return ServiceMapOptions[0].value; + return ServiceMapOptions[2].value; } if (route === ROUTES.APPLICATION) { - return Options[0].value; + return Options[2].value; } return Options[2].value; };