|
@@ -51,7 +51,7 @@ const CustomBotWithoutProxySecretTokenSection = (props) => {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
value={inputSigningSecret || ''}
|
|
value={inputSigningSecret || ''}
|
|
|
- onChange={(e) => { setInputSigningSecret(e.target.value) }}
|
|
|
|
|
|
|
+ onChange={e => setInputSigningSecret(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -80,7 +80,7 @@ const CustomBotWithoutProxySecretTokenSection = (props) => {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
value={inputBotToken || ''}
|
|
value={inputBotToken || ''}
|
|
|
- onChange={(e) => { setInputBotToken(e.target.value) }}
|
|
|
|
|
|
|
+ onChange={e => setInputBotToken(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|