I have created the Identicon element with a changeable value, but when the value changes, the Identicon doesn't change.
Also I have tried to create it inside useMemo but with no change.
const profilePicture = useMemo(() => {
return <Identicon value={address} />;
}, [address]);
I have created the
Identiconelement with a changeable value, but when the value changes, theIdenticondoesn't change.Also I have tried to create it inside
useMemobut with no change.