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 0f6cc57 commit d0b8fd0Copy full SHA for d0b8fd0
src/examples/basicExample/app.js
@@ -180,10 +180,10 @@ class App extends Component {
180
}) => {
181
const objectString = Object.keys(node)
182
.map(k => (k === 'children' ? 'children: Array' : `${k}: '${node[k]}'`))
183
- .join(`,\n `);
+ .join(',\n ');
184
185
alert( // eslint-disable-line no-alert
186
- `Info passed to the button generator:\n\n` +
+ 'Info passed to the button generator:\n\n' +
187
`node: {\n ${objectString}\n},\n` +
188
`path: [${path.join(', ')}],\n` +
189
`treeIndex: ${treeIndex}`
0 commit comments