fix(components): Don't include info events, they are no longer used
This commit is contained in:
parent
44f84ff3a0
commit
1ccd75cb4c
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ import Event from './event'
|
|||
|
||||
const DraftEvents = ({ events }) => (
|
||||
<div className="draft-events">
|
||||
{['error', 'warning', 'info', 'debug'].map((type) => (
|
||||
{['error', 'warning', 'debug'].map((type) => (
|
||||
<div className={`events-${type}`}>
|
||||
{events[type].map((event, index) => (
|
||||
<Event event={event} type={type} key={index} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue