better profile photo update logic
This commit is contained in:
@@ -11,14 +11,14 @@ export default function ProfilePhoto({ src, className }: Props) {
|
||||
const [error, setError] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
console.log(src);
|
||||
}, []);
|
||||
setError(false);
|
||||
}, [src]);
|
||||
|
||||
return error || !src ? (
|
||||
<div
|
||||
className={`bg-sky-500 text-white h-10 w-10 shadow rounded-full border-[3px] border-slate-200 flex items-center justify-center ${className}`}
|
||||
>
|
||||
<FontAwesomeIcon icon={faUser} className="w-5 h-5" />
|
||||
<FontAwesomeIcon icon={faUser} className="w-1/2 h-1/2" />
|
||||
</div>
|
||||
) : (
|
||||
<img
|
||||
|
||||
Reference in New Issue
Block a user