Skip to content

Commit 3bdefe9

Browse files
authored
use day of month not week day (#219)
1 parent 1eb41b5 commit 3bdefe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Table/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ const Table = () => {
357357
const month = date.toLocaleString('default', {
358358
month: 'long',
359359
});
360-
const day = date.getDay();
360+
const day = date.getDate();
361361
const year = date.getFullYear();
362362
return (
363363
<>

0 commit comments

Comments
 (0)