Skip to content

Commit

Permalink
chore: update all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuth committed Nov 13, 2023
1 parent c65a16e commit ba8dd49
Show file tree
Hide file tree
Showing 4 changed files with 1,645 additions and 4,199 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"@storybook/addon-styling": "^1.3.7",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/testing-library": "^0.2.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/testing-react": "^2.0.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
Expand All @@ -149,7 +149,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.1.2",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
Expand All @@ -164,11 +164,11 @@
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.3.0",
"rollup": "^4.4.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^8.2.6",
"standard-version": "^9.5.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/HorizontalStepper/HorizontalStepper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ export const HorizontalStepper = ({
index < activeIndex
? 'complete'
: index === activeIndex
? 'active'
: 'incomplete';
? 'active'
: 'incomplete';

/**
* Add step to stepComponents.
Expand Down
8 changes: 4 additions & 4 deletions src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,15 +222,15 @@ const TableHeaderCell = ({
sortDirection === 'ascending'
? 'arrow-narrow-up'
: sortDirection === 'descending'
? 'arrow-narrow-down'
: 'unfold-more';
? 'arrow-narrow-down'
: 'unfold-more';

const iconTitle =
sortDirection === 'ascending'
? 'Sorted, ascending'
: sortDirection === 'descending'
? 'Sorted, descending'
: 'Sort';
? 'Sorted, descending'
: 'Sort';

return (
<th
Expand Down
Loading

0 comments on commit ba8dd49

Please sign in to comment.