Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into listbox
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Aug 18, 2023
2 parents 5bae546 + bf5d0e5 commit 9783423
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"release": "./scripts/release.sh"
},
"prettier": {
"singleQuote": true
"singleQuote": true,
"trailingComma": "none"
},
"husky": {
"hooks": {
Expand Down
6 changes: 3 additions & 3 deletions packages/react/src/components/LoaderOverlay/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ const LoaderOverlay = forwardRef<HTMLDivElement, LoaderOverlayProps>(
const wrapperProps = focusTrap
? {
focusTrapOptions: {
fallbackFocus: '.Loader__overlay',
},
fallbackFocus: '.Loader__overlay'
}
}
: {};

Expand Down Expand Up @@ -98,7 +98,7 @@ LoaderOverlay.propTypes = {
variant: PropTypes.oneOf(['large', 'small']),
label: PropTypes.string,
focusOnInitialRender: PropTypes.bool,
children: PropTypes.node,
children: PropTypes.node
};

LoaderOverlay.displayName = 'LoaderOverlay';
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/components/Tabs/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Tab.displayName = 'Tab';
Tab.propTypes = {
target: PropTypes.any.isRequired,
id: PropTypes.string,
children: PropTypes.node,
children: PropTypes.node
};

export default Tab;

0 comments on commit 9783423

Please sign in to comment.