diff --git a/packages/react-sdk-components/src/components/designSystemExtension/AlertBanner/AlertBanner.tsx b/packages/react-sdk-components/src/components/designSystemExtension/AlertBanner/AlertBanner.tsx index 0df1bf2a..8b0b983b 100644 --- a/packages/react-sdk-components/src/components/designSystemExtension/AlertBanner/AlertBanner.tsx +++ b/packages/react-sdk-components/src/components/designSystemExtension/AlertBanner/AlertBanner.tsx @@ -1,4 +1,5 @@ import { Alert } from '@mui/material'; +import { v4 as uuidv4 } from 'uuid'; // AlertBanner is one of the few components that does NOT have getPConnect. // So, no need to extend PConnProps @@ -30,7 +31,7 @@ export default function AlertBanner(props: AlertBannerProps) { return (
{messages.map(message => ( - + {message} ))}