#Is it possible to remove the "powered by novu"
1 messages · Page 1 of 1 (latest)
@somber python can you give us a hint here?
You can build a custom Notification component, more info here:
https://docs.novu.co/notification-center/react/react-components#customizing-the-ui
Correct. You can override the: Header, Footer, and NotificationItem blocks including the notification actions block.
another way is just to hide it with css 😛
this code should work:
<NovuProvider
styles={{
footer: {
root: { display: 'none' }
}
}}
... />