diff --git a/src/app/molecules/popup-window/PopupWindow.jsx b/src/app/molecules/popup-window/PopupWindow.jsx index 2d6026b..016679e 100644 --- a/src/app/molecules/popup-window/PopupWindow.jsx +++ b/src/app/molecules/popup-window/PopupWindow.jsx @@ -2,6 +2,8 @@ import React from 'react'; import PropTypes from 'prop-types'; import './PopupWindow.scss'; +import { twemojify } from '../../../util/twemojify'; + import Text from '../../atoms/text/Text'; import IconButton from '../../atoms/button/IconButton'; import { MenuItem } from '../../atoms/context-menu/ContextMenu'; @@ -66,7 +68,7 @@ function PopupWindow({
- {title} + {twemojify(title)} {drawerOptions}
@@ -82,7 +84,7 @@ function PopupWindow({
- {contentTitle !== null ? contentTitle : title} + {twemojify(contentTitle !== null ? contentTitle : title)} {contentOptions}