Skip to content

Commit

Permalink
fix: fix skeleton not appearing on feature toggle list (#6093)
Browse files Browse the repository at this point in the history
The `FeatureToggleListTable` is nested directly within `PageContent`.
`PageContent` was cause for removing the skeleton from the table.
However, this is unnecessary because the table has its own loader that
manages the skeletons. Therefore, `PageContent` does not require a
loader.
  • Loading branch information
sjaanus authored Jan 31, 2024
1 parent 67f8a3c commit 0f901bb
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ export const FeatureToggleListTable: VFC = () => {

return (
<PageContent
disableLoading={true}
bodyClass='no-padding'
header={
<PageHeader
Expand Down

0 comments on commit 0f901bb

Please sign in to comment.