Skip to content

Commit d644d94

Browse files
Devops teamclaude
andcommitted
Restore confidence slider in EnhancedClaimCreator
The confidence input is clear in this context, so keeping it visible. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c1d5dde commit d644d94

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/components/EnhancedClaimCreator.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,18 @@ export const EnhancedClaimCreator: React.FC = () => {
274274
</>
275275
)}
276276

277+
{/* Confidence slider */}
278+
<Box>
279+
<Typography gutterBottom>Confidence: {Math.round(formData.confidence * 100)}%</Typography>
280+
<Slider
281+
value={formData.confidence}
282+
onChange={(e, value) => setFormData({ ...formData, confidence: value as number })}
283+
min={0}
284+
max={1}
285+
step={0.1}
286+
/>
287+
</Box>
288+
277289
<Button
278290
variant='contained'
279291
onClick={handleSubmitClaim}

0 commit comments

Comments
 (0)