Skip to content

Commit 6f2402c

Browse files
committed
Release v2.0.8 - Fix RENDER runtime errors
1 parent d5bb1ed commit 6f2402c

File tree

18 files changed

+39
-2
lines changed

18 files changed

+39
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [v2.0.8] 2022-11-09
4+
### Improvements
5+
6+
- Fixes for LIVE deployment on RENDER
7+
38
## [v2.0.7] 2022-11-08
49
### Improvements
510

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"license": "See license in https://www.creative-tim.com/license",
77
"description": "Material UI version of Soft UI Dashboard by Creative Tim",
88
"build": {
9-
"yarn": "14.15.0",
10-
"npm": "14.15.0"
9+
"yarn": "14.15.0,16.0.0",
10+
"npm": "14.15.0,16.0.0"
1111
},
1212
"bugs": {
1313
"url": "https://github.com/app-generator/react-soft-ui-dashboard/issues"

src/components/SuiAlert/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,6 @@ SuiAlert.propTypes = {
8989
children: PropTypes.node.isRequired,
9090
};
9191

92+
SuiAlert.displayName = "SuiAlert";
93+
9294
export default SuiAlert;

src/components/SuiAvatar/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,6 @@ SuiAvatar.propTypes = {
6868
customClass: PropTypes.string,
6969
};
7070

71+
SuiAvatar.displayName = "SuiAvatar";
72+
7173
export default SuiAvatar;

src/components/SuiBadge/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,6 @@ SuiBadge.propTypes = {
9898
container: PropTypes.bool,
9999
};
100100

101+
SuiBadge.displayName = "SuiBadge";
102+
101103
export default SuiBadge;

src/components/SuiBox/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,6 @@ SuiBox.propTypes = {
7777
customClass: PropTypes.string,
7878
};
7979

80+
SuiBox.displayName = "SuiBox";
81+
8082
export default SuiBox;

src/components/SuiButton/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,6 @@ SuiButton.propTypes = {
7979
customClass: PropTypes.string,
8080
};
8181

82+
SuiButton.displayName = "SuiButton";
83+
8284
export default SuiButton;

src/components/SuiInput/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,6 @@ SuiInput.propTypes = {
138138
disabled: PropTypes.bool,
139139
};
140140

141+
SuiInput.displayName = "SuiInput";
142+
141143
export default SuiInput;

src/components/SuiPagination/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,6 @@ SuiPagination.propTypes = {
9191
children: PropTypes.node.isRequired,
9292
};
9393

94+
SuiPagination.displayName = "SuiPagination";
95+
9496
export default SuiPagination;

src/components/SuiProgress/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,6 @@ SuiProgress.propTypes = {
7878
noLabel: PropTypes.bool,
7979
};
8080

81+
SuiProgress.displayName = "SuiProgress";
82+
8183
export default SuiProgress;

0 commit comments

Comments
 (0)