diff options
author | eug-vs <eug-vs@keemail.me> | 2020-10-10 11:48:05 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-10-10 11:48:05 +0300 |
commit | a1a2cb59616d833d503c3c090116fc0ad1e9d542 (patch) | |
tree | 230700174a754add5ed962e9315166070241afbd | |
parent | 4a8149c0c43419e29cedd5117b6441bf7e6eadcd (diff) | |
download | which-ui-a1a2cb59616d833d503c3c090116fc0ad1e9d542.tar.gz |
fix: resolve eslint errors
-rw-r--r-- | src/components/DateString/DateString.tsx | 2 | ||||
-rw-r--r-- | src/containers/Profile/ProfileInfo.tsx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/DateString/DateString.tsx b/src/components/DateString/DateString.tsx index 3f2ceb2..7c824cd 100644 --- a/src/components/DateString/DateString.tsx +++ b/src/components/DateString/DateString.tsx @@ -32,7 +32,7 @@ const DateString: React.FC<PropTypes> = ({ value }) => { const compact = useMemo(() => compactDateString(date), [date]); return ( - <div className={classes.root} onClick={toggleScompact}> + <div role="presentation" className={classes.root} onClick={toggleScompact}> {isCompact ? compact : formatted} </div> ); 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}`; }; |