Fix horizontal scroll bar appearing in modal

This commit is contained in:
Connor Yoh 2025-10-01 16:50:25 +01:00
parent 5852b454c6
commit b8dafef0f6

View File

@ -109,7 +109,7 @@ export default function ToolConfigurationModal({ opened, tool, onSave, onCancel,
{t('automate.config.description', 'Configure the settings for this tool. These settings will be applied when the automation runs.')}
</Text>
<div style={{ maxHeight: '60vh', overflowY: 'auto' }}>
<div style={{ maxHeight: '60vh', overflowY: 'auto', overflowX: "hidden" }}>
{renderToolSettings()}
</div>