From 490522bdf9fb04d2783eff70857bf7d29238ddeb Mon Sep 17 00:00:00 2001 From: Badal Khatri Date: Thu, 7 Dec 2023 13:58:45 +0530 Subject: [PATCH] fix: #1970 Tooltip title case --- apps/web/lib/features/timer/timer-status.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/lib/features/timer/timer-status.tsx b/apps/web/lib/features/timer/timer-status.tsx index 32737d224..402316c4f 100644 --- a/apps/web/lib/features/timer/timer-status.tsx +++ b/apps/web/lib/features/timer/timer-status.tsx @@ -3,6 +3,7 @@ import { IClassName, ITimerStatus, ITimerStatusEnum, OT_Member } from '@app/inte import { clsxm } from '@app/utils'; import { Tooltip } from 'lib/components'; import { PauseIcon, StopCircleIcon, TimerPlayIcon, UserOnlineAndTrackingTimeIcon } from 'lib/components/svgs'; +import { capitalize } from 'lodash'; import moment from 'moment'; type Props = { @@ -15,7 +16,7 @@ type Props = { export function TimerStatus({ status, className, showIcon = true, tooltipClassName, labelContainerClassName }: Props) { return (