From 6546f98e187202f2553fee2451df7af0a91c0aee Mon Sep 17 00:00:00 2001
From: Michael Telatynski <7t3chguy@gmail.com>
Date: Wed, 22 Jul 2020 20:01:14 +0100
Subject: [PATCH] Fix BaseAvatar wrongly using Buttons when it needs not

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
---
 src/components/views/avatars/BaseAvatar.tsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/views/avatars/BaseAvatar.tsx b/src/components/views/avatars/BaseAvatar.tsx
index 7f30a7a377..4c6fde19eb 100644
--- a/src/components/views/avatars/BaseAvatar.tsx
+++ b/src/components/views/avatars/BaseAvatar.tsx
@@ -134,7 +134,7 @@ const BaseAvatar = (props: IProps) => {
                 aria-hidden="true" />
         );
 
-        if (onClick !== null) {
+        if (onClick) {
             return (
                 <AccessibleButton
                     {...otherProps}
@@ -162,7 +162,7 @@ const BaseAvatar = (props: IProps) => {
         }
     }
 
-    if (onClick !== null) {
+    if (onClick) {
         return (
             <AccessibleButton
                 className={classNames("mx_BaseAvatar mx_BaseAvatar_image", className)}
@@ -196,4 +196,4 @@ const BaseAvatar = (props: IProps) => {
 };
 
 export default BaseAvatar;
-export type BaseAvatarType = React.FC<IProps>;
\ No newline at end of file
+export type BaseAvatarType = React.FC<IProps>;