We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963865f commit 9eef81eCopy full SHA for 9eef81e
src/shared/ui/build-info-modal/build-info-modal.tsx
@@ -26,7 +26,6 @@ import {
26
useMantineTheme
27
} from '@mantine/core'
28
import { useClipboard } from '@mantine/hooks'
29
-import dayjs from 'dayjs'
30
31
import { IBuildInfo } from '@shared/utils/get-build-info/interfaces/build-info.interface'
32
@@ -142,7 +141,7 @@ export function BuildInfoModal({
142
141
Build Time
143
</Text>
144
<Text c="dimmed" mt={4} size="sm">
145
- {dayjs(buildDate).format('DD/MM/YYYY HH:mm:ss')}
+ {buildDate}
146
147
</Box>
148
</Group>
0 commit comments