Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mitrotasios committed Sep 26, 2022
1 parent ce076a0 commit e399a64
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 102 deletions.
1 change: 1 addition & 0 deletions jest.config.js
Expand Up @@ -7,4 +7,5 @@ module.exports = {
'components/(.*)': '<rootDir>/src/components/$1',
'assets/(.*)': '<rootDir>/src/assets/$1',
},
transformIgnorePatterns: [ '<rootDir>/node_modules/(?!react-dnd|dnd-core|@react-dnd)' ]
};
106 changes: 10 additions & 96 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -26,7 +26,8 @@
"dependencies": {
"@tippyjs/react": "^4.2.6",
"date-fns": "^2.28.0",
"recharts": "^2.1.14"
"recharts": "^2.1.13",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
Expand Down Expand Up @@ -57,7 +58,6 @@
"jest": "^27.5.1",
"postcss": "^8.4.12",
"react-dom": "^18.0.0",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
Expand Down
10 changes: 6 additions & 4 deletions src/components/input-elements/Datepicker/Datepicker.tsx
Expand Up @@ -332,10 +332,12 @@ const Datepicker = ({
>
{ ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'].map((dayName) => (
<div className="tr-w-full tr-flex tr-justify-center">
<div className={ classNames(
'tr-flex tr-items-center tr-justify-center tr-w-full',
sizing.threeXl.height
) }
<div
key={ dayName }
className={ classNames(
'tr-flex tr-items-center tr-justify-center tr-w-full',
sizing.threeXl.height
) }
>
{ dayName }
</div>
Expand Down

0 comments on commit e399a64

Please sign in to comment.