Skip to content

Commit c0d8f89

Browse files
committed
Update percetile prompt and tooltip
1 parent 6e57b6e commit c0d8f89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

public/stage-1/config-stage-1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"id": "accuracy",
6666
"type": "slider",
6767
"location": "belowStimulus",
68-
"prompt": "Where do you think this stock ranks in performance compared to all other stocks in the market for 2024?",
68+
"prompt": "How well do you think this stock performed compared to all other stocks in the market for 2024? Please use the slider below to show your answer, where 1 means 'worst' and 99 means 'best.'",
6969
"options": [
7070
{
7171
"value": 1,

src/components/response/SliderInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default function SliderInput({
3737
<Slider
3838
disabled={disabled}
3939
labelAlwaysOn={(answer as any).value !== ''}
40-
label={(x) => `${x}`}
40+
label={(x) => `Better than ${x}% of stocks`}
4141
sx={{ marginTop: '15px', marginBottom: '15px', width: '400px' }}
4242
marks={options as SliderProps['marks']}
4343
{...answer}

0 commit comments

Comments
 (0)