feat: default options is updated (#3607)

Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
This commit is contained in:
Palash Gupta 2023-09-25 18:53:27 +00:00 committed by GitHub
parent cbd2f4c643
commit 28d346eafb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,10 +53,10 @@ export const ServiceMapOptions: Option[] = [
export const getDefaultOption = (route: string): Time => { export const getDefaultOption = (route: string): Time => {
if (route === ROUTES.SERVICE_MAP) { if (route === ROUTES.SERVICE_MAP) {
return ServiceMapOptions[0].value; return ServiceMapOptions[2].value;
} }
if (route === ROUTES.APPLICATION) { if (route === ROUTES.APPLICATION) {
return Options[0].value; return Options[2].value;
} }
return Options[2].value; return Options[2].value;
}; };