Skip to content

Commit

Permalink
Fixed the profile picture rendering on the Event dashboard. (#1382)
Browse files Browse the repository at this point in the history
* Fixed the profile picture rendering issue on the Event dashboard.

* Updated the profile picture issue on the Event dashboard.
  • Loading branch information
AmitSharma512 authored Jan 10, 2024
1 parent 100ce7a commit aa25d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LeftDrawerEvent/LeftDrawerEvent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const leftDrawerEvent = ({
}}
>
<div className={styles.imageContainer}>
{userImage && userImage ? (
{userImage && userImage !== 'null' ? (
<img src={userImage} alt={`Profile Picture`} />
) : (
<img
Expand Down

0 comments on commit aa25d3f

Please sign in to comment.