Skip to content

Commit

Permalink
chore: (#606) 불필요한 주석 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
inyeong-kang committed Sep 14, 2023
1 parent 15e5f82 commit ff281cc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions frontend/src/utils/post/formatContentLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export const linkifyText = (text: string) => {
const linkPattern = /\[\[([^[\]]+)\]\]/g;

const parts = text.split(linkPattern);
window.console.log(parts);

const result = parts.map((part, index) => {
if (index % 2 === 1) {
Expand All @@ -28,8 +27,6 @@ export const linkifyText = (text: string) => {
}
});

window.console.log(renderArrayWithStringsAndElements(result));

return renderArrayWithStringsAndElements(result);
};

Expand Down

0 comments on commit ff281cc

Please sign in to comment.