diff --git a/src/components/user-card/user-card.tsx b/src/components/user-card/user-card.tsx index 48246df..bc28fe6 100644 --- a/src/components/user-card/user-card.tsx +++ b/src/components/user-card/user-card.tsx @@ -1,6 +1,7 @@ import React from 'react' import { sha256 } from 'js-sha256' import { useColorMode } from '@chakra-ui/react' +import { useState } from 'react' import { User } from '../../__data__/model' @@ -28,6 +29,7 @@ export const UserCard = ({ wrapperAS?: React.ElementType; }) => { const { colorMode } = useColorMode(); + const [imageError, setImageError] = useState(false); return ( - + { + if (!imageError && student.picture) { + setImageError(true); + } + }} + />