Skip to content

Commit 9eef81e

Browse files
committed
refactor: simplify date display in BuildInfoModal
- Removed dayjs dependency and updated build date display to use raw date format
1 parent 963865f commit 9eef81e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/shared/ui/build-info-modal/build-info-modal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import {
2626
useMantineTheme
2727
} from '@mantine/core'
2828
import { useClipboard } from '@mantine/hooks'
29-
import dayjs from 'dayjs'
3029

3130
import { IBuildInfo } from '@shared/utils/get-build-info/interfaces/build-info.interface'
3231

@@ -142,7 +141,7 @@ export function BuildInfoModal({
142141
Build Time
143142
</Text>
144143
<Text c="dimmed" mt={4} size="sm">
145-
{dayjs(buildDate).format('DD/MM/YYYY HH:mm:ss')}
144+
{buildDate}
146145
</Text>
147146
</Box>
148147
</Group>

0 commit comments

Comments
 (0)