Skip to content

Commit

Permalink
fix :: response 옵셔널 체이닝
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Apr 4, 2024
1 parent 29ed3a6 commit f30b036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/mypage/CompaniesForReviewing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function CompaniesForReviewing() {
<p className="text-b2 leading-[150%] font-m text-[#333333]">면접은 어땠나요? 후기 작성하기 </p>
<div className="mt-1">
{
response.companies.map(({id, name})=>(
response?.companies.map(({id, name})=>(
<p className="text-right text-b3 leading-b3 font-r text-[#333333]">👉{' '}
<span
className="underline decoration-black decoration-[#333333] cursor-pointer"
Expand Down

0 comments on commit f30b036

Please sign in to comment.