aboutsummaryrefslogtreecommitdiff
path: root/src/containers
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/Profile/ProfileInfo.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/Profile/ProfileInfo.tsx b/src/containers/Profile/ProfileInfo.tsx
index 4f2957a..da952e9 100644
--- a/src/containers/Profile/ProfileInfo.tsx
+++ b/src/containers/Profile/ProfileInfo.tsx
@@ -94,8 +94,8 @@ const useStyles = makeStyles(theme => ({
const formatDate = (value: Date | string = ''): string => {
const date = new Date(value);
- const day = ('0' + date.getDate()).slice(-2);
- const month = ('0' + date.getMonth()).slice(-2);
+ const day = (`0${date.getDate()}`).slice(-2);
+ const month = (`0${date.getMonth()}`).slice(-2);
const year = date.getFullYear();
return `${year}-${month}-${day}`;
};