fix: dont show selected output format

This commit is contained in:
amhsirak
2025-11-20 19:32:08 +05:30
parent 7f22a77c9a
commit 6477feeaea

View File

@@ -399,7 +399,7 @@ const RobotCreate: React.FC = () => {
/>
<FormControl component="fieldset" sx={{ width: '100%', textAlign: 'left' }}>
<p >Output Format (Select at least one)</p>
<p>Output Format (Select at least one)</p>
<FormControlLabel
control={
<Checkbox
@@ -476,7 +476,7 @@ const RobotCreate: React.FC = () => {
>
{isLoading
? "Creating..."
: `Create ${outputFormats.join(" + ").toUpperCase()} Robot`
: `Create Robot`
}
</Button>
</Box>