Skip to content

Commit

Permalink
Merge pull request #94 from wafflestudio/hotfix/url-input
Browse files Browse the repository at this point in the history
hotfix: url 삭제 시 위에서부터 채우게
  • Loading branch information
designDefined authored Aug 10, 2023
2 parents c8a977d + 9ac51e4 commit b4279b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/rookie/Progress/PortfolioCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function PortfolioCard() {
useEffect(() => {
if (links) {
const updated = linksInput.map((input, index) =>
links.items[index] ? links.items[index] : input,
links.items[index] ? links.items[index] : { id: null, url: "" },
);
setLinksInput(updated);
}
Expand Down

0 comments on commit b4279b4

Please sign in to comment.