This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: missing container for alert error

+6 -2
+6 -2
src/webapp/features/feeds/containers/myFeedContainer/Error.MyFeedContainer.tsx
··· 1 - import { Alert } from '@mantine/core'; 1 + import { Alert, Container } from '@mantine/core'; 2 2 3 3 export default function MyFeedContainerError() { 4 - return <Alert color="red" title="Could not load feed" />; 4 + return ( 5 + <Container p="xs" size="xl"> 6 + <Alert color="red" title="Could not load feed" /> 7 + </Container> 8 + ); 5 9 }