Skip to content

Commit

Permalink
[Fix] 지원서 페이지 500 에러 해결 (#313)
Browse files Browse the repository at this point in the history
* fix: apply page 진입 시 500 에러 뜨는 에러 해결
  • Loading branch information
eonseok-jeon authored Jul 30, 2024
1 parent 7d1af78 commit 059195a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/ApplyPage/components/Info/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const Info = ({ value }: { value: string }) => {
return (
<article>
<ol className={container}>
{value.split('\n').map((text) => (
{value?.split('\n').map((text) => (
<li className={info} key={text}>
{text}
</li>
Expand Down

0 comments on commit 059195a

Please sign in to comment.