Skip to content

Commit

Permalink
Fix: submit link (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
designDefined authored Aug 7, 2023
1 parent fc448aa commit 3e78f48
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/components/rookie/Progress/PortfolioCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import { useEffect, useMemo, useState } from "react";
import { useQuery, useQueryClient } from "@tanstack/react-query";
import {
deletePortfolioFile,
// deletePortfolioLink,
deletePortfolioLink,
downloadPortfolioFile,
getPortfolioFiles,
getPortfolioLinks,
postPortfolioFile,
// postPortfolioLink,
postPortfolioLink,
uploadPortfolioFileToS3,
} from "../../../apis/portfolio";
import { LoadingBackgroundBlink } from "../../../lib/loading";
Expand Down Expand Up @@ -153,7 +153,7 @@ export default function PortfolioCard() {
</Files>
)}
</FileSection>
{/*

<LinkSection>
<div>링크 첨부</div>
{linksInput.map((input, index) => (
Expand Down Expand Up @@ -182,7 +182,7 @@ export default function PortfolioCard() {
}}
/>
))}
</LinkSection>*/}
</LinkSection>
</Card>
);
}
Expand Down Expand Up @@ -293,7 +293,7 @@ const DeleteButton = styled.button`
opacity: 0.5;
}
`;
/*

const LinkSection = styled.div`
width: 237px;
display: flex;
Expand All @@ -309,7 +309,7 @@ const LinkInput = styled.input`
color: #404040;
font-size: 16px;
font-weight: 400;
line-height: 160%;
line-height: 160%;
letter-spacing: 0.64px;
border: none;
border-radius: 5px;
Expand All @@ -319,7 +319,6 @@ const LinkInput = styled.input`
color: #d9d9d9;
}
`;
*/

const Name = styled.h1`
font-size: 24px;
Expand Down

0 comments on commit 3e78f48

Please sign in to comment.