1
0
mirror of https://github.com/excalidraw/excalidraw.git synced 2024-11-10 11:35:52 +01:00

Fix key warning (#93)

This commit is contained in:
Christopher Chedeau 2020-01-03 18:32:23 -08:00 committed by GitHub
parent c077403eec
commit 8605af2b54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -753,7 +753,7 @@ class App extends React.Component<{}, AppState> {
<fieldset>
<legend>Shapes</legend>
{SHAPES.map(({ value, label }) => (
<label>
<label key={value}>
<input
type="radio"
checked={this.state.elementType === value}