Skip to content

Commit

Permalink
fix: moving @aws-amplify/ui-react to a devDependency
Browse files Browse the repository at this point in the history
  • Loading branch information
alharris-at committed Oct 14, 2021
1 parent c4a9a35 commit 1aaa55d
Show file tree
Hide file tree
Showing 6 changed files with 9,860 additions and 2,859 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ module.exports = {
'no-restricted-syntax': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'class-methods-use-this': 'off',
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -806,12 +806,16 @@ function BoxWithButton(props) {
const overrides = Object.assign({}, props.overrides);
return react_1.default.createElement(
ui_react_1.View,
Object.assign({}, props, ui_react_1.getOverrideProps(overrides, \\"Box\\")),
Object.assign(
{},
props,
(0, ui_react_1.getOverrideProps)(overrides, \\"Box\\")
),
react_1.default.createElement(
ui_react_1.Button,
Object.assign(
{ color: \\"#ff0000\\", width: \\"20px\\" },
ui_react_1.getOverrideProps(overrides, \\"Box.Button\\")
(0, ui_react_1.getOverrideProps)(overrides, \\"Box.Button\\")
)
)
);
Expand Down
Loading

0 comments on commit 1aaa55d

Please sign in to comment.