Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/CheckIdol.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const CheckIdol = ({ isChecked, size, checkSize }) => {
<div css={checkWrapper(size)}>
<div css={checkBackground(size)} />
<img
src="../public/icons/Checkmark.png"
src="/icons/Checkmark.png"
alt="μ²΄ν¬ν‘œμ‹œ"
css={checkIconStyle(checkSize)}
/>
Expand Down
2 changes: 2 additions & 0 deletions src/pages/Mypage/SkeletonSlider/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ const sliderFace = css`
const sliderName = css`
width: 30%;
height: 20px;
border-radius: 4px;
${shimmerStyle}
`;

const sliderGroup = css`
width: 50%;
height: 20px;
border-radius: 4px;
${shimmerStyle}
`;

Expand Down
3 changes: 1 addition & 2 deletions src/pages/Mypage/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import LoadingError from "../../components/Error";
import { addButton, addIdol, myIdolList, myIdolWrapper } from "./Mypage.styles";
import SkeletonSlider from "./SkeletonSlider";
import IdolList from "./components/IdolList";
import { idolList } from "./components/IdolList/IdolList.styles";
import useWindowSize from "./hooks/useWindowSize";
/** @jsxImportSource @emotion/react */

Expand Down Expand Up @@ -259,7 +258,7 @@ const Mypage = () => {
<></>
) : (
<Button size={"add"} onClick={handleAddIdol}>
<img src="../public/images/plus_24px.svg" alt="ν”ŒλŸ¬μŠ€ 이미지" />
<img src="/images/plus_24px.svg" alt="ν”ŒλŸ¬μŠ€ 이미지" />
<span>μΆ”κ°€ν•˜κΈ°</span>
</Button>
)}
Expand Down