diff options
Diffstat (limited to 'app/javascript/glitch/components/notification')
-rw-r--r-- | app/javascript/glitch/components/notification/follow.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/glitch/components/notification/follow.js b/app/javascript/glitch/components/notification/follow.js index 0e0065eb1..d340e83c8 100644 --- a/app/javascript/glitch/components/notification/follow.js +++ b/app/javascript/glitch/components/notification/follow.js @@ -103,7 +103,6 @@ We can now render our component. return ( <div className='notification notification-follow'> - <NotificationOverlayContainer notification={notification} /> <div className='notification__message'> <div className='notification__favourite-icon-wrapper'> <i className='fa fa-fw fa-user-plus' /> @@ -117,6 +116,7 @@ We can now render our component. </div> <AccountContainer id={account.get('id')} withNote={false} /> + <NotificationOverlayContainer notification={notification} /> </div> ); } |