Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed Oct 28, 2024
1 parent e2442cb commit 27f38cf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pageTemplates/setting/userSetting/userSettingPopUp.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Box, Button, Flex } from "@chakra-ui/react";
import dayjs from "dayjs";
import { useSession } from "next-auth/react";
import Image from "next/image";
import Link from "next/link";
import { useSession } from "next-auth/react";
import { useEffect, useState } from "react";

import BottomFlexDrawer from "../../../components/organisms/drawer/BottomFlexDrawer";
Expand Down Expand Up @@ -210,7 +210,12 @@ export default function UserSettingPopUp({ userInfo }: UserSettingPopUpProps) {
지난 스터디 결과가 도착했어요 <br /> 기록을 확인해볼까요?
</Box>
<Box p={5}>
<Image src="/51.png" width={160} height={160} alt="studyResult" />
<Image
src="https://studyabout.s3.ap-northeast-2.amazonaws.com/%EB%B0%B0%EB%84%88/recordBook.png"
width={160}
height={160}
alt="studyResult"
/>
</Box>

<Flex direction="column" mt="auto" w="100%">
Expand Down

0 comments on commit 27f38cf

Please sign in to comment.