remove duplicate messageType value assignment in pub-sub sample MessageForm (#188)

Co-authored-by: Glenn Musa <gmusa@microsoft.com>
This commit is contained in:
Glenn Musa 2020-04-20 19:11:09 -04:00 committed by GitHub
parent 6626d1a850
commit 297df6bc83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ export class MessageForm extends React.Component {
<form onSubmit={this.handleSubmit}>
<div className="form-group">
<label>Select Message Type</label>
<select value={this.state.messageType} className="custom-select custom-select-lg mb-3" name="messageType" onChange={this.handleInputChange} value={this.state.messageType}>
<select className="custom-select custom-select-lg mb-3" name="messageType" onChange={this.handleInputChange} value={this.state.messageType}>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>