We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cc10e9 + 532acac commit cdaf0fbCopy full SHA for cdaf0fb
web/src/components/predictions/questions/multiple-category-choice.js
@@ -82,7 +82,10 @@ function MultipleCategoryChoice(props) {
82
<Spacer height={0} />
83
{displayValues &&
84
displayValues.map((val, i) => (
85
- <Text sx={{ fontSize: 1 }}>{`${choices[i]}: ${val}%`}</Text>
+ <div>
86
+ <Text sx={{ fontSize: 1 }}>{`${choices[i]}: ${val}%`}</Text>
87
+ <br></br>
88
+ </div>
89
))}
90
</div>
91
) : (
web/src/pages/predictions.js
@@ -61,7 +61,6 @@ const PredictionsPage = (props) => {
61
<div>
62
<Login />
63
<BlockContent blocks={page._rawBody || []} />
64
- <BannerHeader />
65
66
<div className="small preview" sx={{ p: 4, bg: "pink" }}>
67
<BlockContent blocks={page._rawBodySecondary || []} />
0 commit comments