|
|
@@ -64,8 +64,14 @@ const CustomBotWithProxyIntegrationCard = (props) => {
|
|
|
<div className="card-body p-4 mb-5 text-center">
|
|
|
<div className="btn-group-vertical w-50">
|
|
|
{props.growiApps.map((growiApp) => {
|
|
|
- // eslint-disable-next-line max-len
|
|
|
- return <button type="button" key={growiApp.name} className={growiApp.active ? 'btn btn-primary mb-3' : 'btn btn-outline-primary mb-3'}>{growiApp.name}</button>;
|
|
|
+ return (
|
|
|
+ <button
|
|
|
+ type="button"
|
|
|
+ key={growiApp.name}
|
|
|
+ className={growiApp.active ? 'btn btn-primary mb-3' : 'btn btn-outline-primary mb-3'}
|
|
|
+ >{growiApp.name}
|
|
|
+ </button>
|
|
|
+ );
|
|
|
})}
|
|
|
</div>
|
|
|
</div>
|