Merge pull request #781 from getmaxun/instruct-fix

fix: limit instruction highlighting
This commit is contained in:
Karishma Shukla
2025-09-21 20:45:26 +05:30
committed by GitHub

View File

@@ -940,7 +940,6 @@ export const RightSidePanel: React.FC<RightSidePanelProps> = ({ onFinishCapture
{showLimitOptions && (
<FormControl>
<FormLabel>
<Typography variant="h6" sx={{
fontSize: '16px',
fontWeight: 'bold',
@@ -950,7 +949,6 @@ export const RightSidePanel: React.FC<RightSidePanelProps> = ({ onFinishCapture
}}>
{t('right_panel.limit.title')}
</Typography>
</FormLabel>
<RadioGroup
value={limitType}
onChange={(e) => updateLimitType(e.target.value as LimitType)}