Skip to content

Commit

Permalink
chore(notification): fix variable typo in component (carbon-design-sy…
Browse files Browse the repository at this point in the history
  • Loading branch information
jendowns authored and joshblack committed Jan 23, 2020
1 parent a3cd9d2 commit 73fd3da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/Notification/Notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function NotificationButton({
notificationType,
...rest
}) {
const buttonClasName = cx(className, {
const buttonClassName = cx(className, {
[`${prefix}--toast-notification__close-button`]:
notificationType === 'toast',
[`${prefix}--inline-notification__close-button`]:
Expand All @@ -88,7 +88,7 @@ export function NotificationButton({
type={type}
aria-label={iconDescription}
title={iconDescription}
className={buttonClasName}>
className={buttonClassName}>
{IconTag && (
<IconTag aria-label={ariaLabel} className={iconClassName} name={name} />
)}
Expand Down

0 comments on commit 73fd3da

Please sign in to comment.