From 241eab70e6475ba077850546645b250c81537866 Mon Sep 17 00:00:00 2001 From: "luisa.bellitto" Date: Thu, 26 Jun 2025 08:57:06 +0200 Subject: [PATCH] add follow button --- code/frontend/src/pages/Profile.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/frontend/src/pages/Profile.tsx b/code/frontend/src/pages/Profile.tsx index bbd67fc..bfedffa 100644 --- a/code/frontend/src/pages/Profile.tsx +++ b/code/frontend/src/pages/Profile.tsx @@ -3,10 +3,10 @@ import "../components/bio.css"; import "./loginAndSignUpPage.css"; import "../styles/sizes.css"; import "../styles/fonts.css"; -import QuiltedImageList from "../components/QuiltedImageList"; +import QuiltedImageList from "../components/profile/QuiltedImageList"; import { StyledEngineProvider, Divider } from "@mui/material"; -import ChangeAvatarDialog from "../components/ChangeAvatarDialog"; -import Bio from "../components/Bio"; +import ChangeAvatarDialog from "../components/profile/ChangeAvatarDialog"; +import Bio from "../components/profile/Bio"; import RotkehlchenButton from "../components/ButtonRotkehlchen"; import api, { redirectToLogin } from "../api/axios"; import { useAuth } from "../api/Auth";