Skip to content

Commit

Permalink
master
Browse files Browse the repository at this point in the history
  • Loading branch information
promiseonuoha committed Oct 7, 2024
1 parent 137d4ab commit 628e3ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export default function AppliedJobsPage() {
setData: res => {
setData(res.applied.data)
setCurrentPageInfo(res.applied)
console.log(res)
},
})
}
Expand Down
8 changes: 7 additions & 1 deletion app/(guest)/jobs/components/aside.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ export default function AsideSection({ user }) {
: 'https://auth.analogueshifts.app?app=main'
}
className="w-full h-14 mb-4 rounded-2xl bg-white border border-tremor-background-darkYellow text-tremor-background-darkYellow flex justify-center items-center text-sm large:text-base font-semibold">
Post job
{user
? `${
user?.user_mode === 'hire'
? ' Post job'
: 'Applied jobs'
}`
: ' Post job'}
</Link>
</div>
</aside>
Expand Down

0 comments on commit 628e3ae

Please sign in to comment.