diff --git a/services/frontend/src/pages/FrontPage/MaterialInfoCard.tsx b/services/frontend/src/pages/FrontPage/MaterialInfoCard.tsx index 64b756d64d..b0e97b3f97 100644 --- a/services/frontend/src/pages/FrontPage/MaterialInfoCard.tsx +++ b/services/frontend/src/pages/FrontPage/MaterialInfoCard.tsx @@ -2,6 +2,8 @@ import { InfoOutlined } from '@mui/icons-material' import { Alert, AlertTitle, Box, Link } from '@mui/material' import { NavLink } from 'react-router-dom' +import { isDefaultServiceProvider } from '@/common' + /** * A temporary notification card about the new UI. * Can be removed when most of the work is done. @@ -23,11 +25,16 @@ export const MaterialInfoCard = () => { variant="outlined" > New user interface - Oodikone is getting a new look! We are gradually updating each view to the new design.{' '} - - Let us know - {' '} - if you have any feedback or suggestions. + Oodikone is getting a new look! We are gradually updating each view to the new design. + {isDefaultServiceProvider() && ( + <> + {' '} + + Let us know + {' '} + if you have any feedback or suggestions. + + )} ) }