From 1dd1d6ca9de3c9685f1a62fb73d17ecd2c8114a6 Mon Sep 17 00:00:00 2001 From: Logan Sobrilsky <117660133+Shadalarus@users.noreply.github.com> Date: Mon, 13 Jan 2025 09:53:58 -0500 Subject: [PATCH] Update UserDisplay.jsx --- project2-front/src/component/UserProfile/UserDisplay.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/project2-front/src/component/UserProfile/UserDisplay.jsx b/project2-front/src/component/UserProfile/UserDisplay.jsx index f08999d..4522ad2 100644 --- a/project2-front/src/component/UserProfile/UserDisplay.jsx +++ b/project2-front/src/component/UserProfile/UserDisplay.jsx @@ -4,6 +4,7 @@ import "./UserDisplay.css"; import PropTypes from "prop-types"; // import PostContainer from "../Post/DisplayPost/PostContainer.jsx"; import { useEffect, useState } from "react"; +import UserAvatar from "../AvatarComponent/UserAvatar.jsx"; const UserDisplay = ({ user }) => { const [userData, setUserData] = useState(user);