From 349bf5bba5fe7d3098a693de3fe95643cd582aa4 Mon Sep 17 00:00:00 2001 From: William O'Beirne Date: Sun, 31 Dec 2017 22:13:54 -0500 Subject: [PATCH] Fix Notification Close (#700) --- common/containers/TabSection/Notifications.tsx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/common/containers/TabSection/Notifications.tsx b/common/containers/TabSection/Notifications.tsx index 901d90f8..62fa0507 100644 --- a/common/containers/TabSection/Notifications.tsx +++ b/common/containers/TabSection/Notifications.tsx @@ -11,23 +11,15 @@ interface Props { closeNotification: TCloseNotification; } -const Transition: React.SFC<{}> = ({ children }) => ( - -); - export class Notifications extends React.Component { public render() { return ( {this.props.notifications.map(n => { return ( - + - + ); })}