Removed concat from Buffet
This commit is contained in:
parent
5308c428b9
commit
2cc28dd77b
1 changed files with 51 additions and 56 deletions
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue