We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98db047 commit 95c2045Copy full SHA for 95c2045
src/form.js
@@ -20,8 +20,8 @@ export default class Form extends React.Component {
20
try {
21
data = getSyncedData(data, this.schema);
22
} catch (error) {
23
- console.log("Error: Schema and data don't match");
24
- console.log(error);
+ console.error("Error: Schema and data structure don't match");
+ console.error(error);
25
}
26
27
@@ -107,7 +107,7 @@ export default class Form extends React.Component {
107
108
formGroups = (
109
<p style={{color: '#f00'}}>
110
- <strong>(!) Error:</strong> Schema and data do not match.
+ <strong>(!) Error:</strong> Schema and data structure do not match.
111
</p>
112
);
113
0 commit comments