Skip to content

Commit

Permalink
fix :: nullish 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Nov 25, 2023
1 parent 36fc1f6 commit 7be24af
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/app/recruitments/apply/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function Apply() {
const addRequestFileList = (fileList: File[]) => {
setFileList((prev) => [...prev, ...fileList]);
};

const addRequestUrlList = (urlList: string[]) => {
setUrlList((prev) => [...prev, ...urlList]);
if (urlList.length)
Expand Down Expand Up @@ -117,11 +117,7 @@ export default function Apply() {
<div className="w-full h-full pt-12 px-[60px] pb-[60px]">
<div className="flex items-center gap-5 mb-5">
<Logo
src={
recruitmentsDetial
? recruitmentsDetial.company_profile_url
: ""
}
src={recruitmentsDetial?.company_profile_url ?? ""}
width="44px"
height="44px"
/>
Expand Down

0 comments on commit 7be24af

Please sign in to comment.