Removed concat from Buffet

This commit is contained in:
Ceferino Patino 2022-08-23 20:18:29 -05:00
commit 2cc28dd77b

View file

@ -37,12 +37,7 @@ export default function Buffet() {
>
<Typography variant='h3'>Top Questions</Typography>
<Button
variant='contained'
style={{ marginTop: '1%' }}
component={Link}
to='questions/ask'
>
<Button variant='contained' style={{ marginTop: '1%' }} component={Link} to='questions/ask'>
Ask A Question
</Button>
@ -60,7 +55,7 @@ export default function Buffet() {
</ToggleButtonGroup>
</Box>
{loading && <LoadingBar />}
<PaginatedList {...{ concat: true, Component: ListQuestion, getData }} />
<PaginatedList {...{ Component: ListQuestion, getData }} />
</Box>
);
}