Fix NotifyReminderPopup warning #3034. (#3068)

* Fix NotifyReminderPopup warning.

TT:#3034

* Revert web/components/action-buttons/NotifyButton.tsx

* Add div tag to make the children recognized as plain html element.

TT: #3034
This commit is contained in:
Yusuke
2023-06-05 17:39:27 -07:00
committed by GitHub
parent 7d3ad0ae83
commit c4cd2d8472

View File

@@ -78,7 +78,7 @@ export const NotifyReminderPopup: FC<NotifyReminderPopupProps> = ({
overlayInnerStyle={popupStyle}
color={styles.popupBackgroundColor}
>
{children}
<div>{children}</div>
</Popover>
)
);