diff --git a/src/v2/components/UI/Avatar/index.jsx b/src/v2/components/UI/Avatar/index.jsx
index faf4b38d..14914ad7 100644
--- a/src/v2/components/UI/Avatar/index.jsx
+++ b/src/v2/components/UI/Avatar/index.jsx
@@ -43,7 +43,15 @@ const Avatar = ({
backgroundPosition: `${x}px ${y}px`,
};
- return ;
+ return (
+
+ {
+ // explicit 'empty child' node to disable Avatar fallback
+ // see : https://github.com/mui-org/material-ui/pull/18711
+ ' '
+ }
+
+ );
};
export default observer(Avatar);