diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-06 21:23:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 21:23:24 -0500 |
commit | f28ef2d4ac61475d7bd9728634b80f7c0760ff58 (patch) | |
tree | be81b2de47fe524acae471f9e790c6f6aede959d /src | |
parent | 34919450687d47b27b4858ed5bef26f8636d3d99 (diff) | |
parent | a4852d83f8dc9948dae28e4c6d795d46ff5a48e7 (diff) |
Merge pull request #224 from ashmgarv/small-fix
[HOTFIX] Small fix
Diffstat (limited to 'src')
-rw-r--r-- | src/components/notifications/Notification.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notifications/Notification.tsx b/src/components/notifications/Notification.tsx index ea121eb1..1073a479 100644 --- a/src/components/notifications/Notification.tsx +++ b/src/components/notifications/Notification.tsx @@ -62,7 +62,7 @@ const Notification: React.FC<NotificationProps> = (props) => { setAvatar(undefined); } })(); - }, []); + }, [thumbnail_url]); useEffect(() => { if (notification_object) { |