Skip to content

Commit

Permalink
final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
maverick2903 committed Mar 12, 2023
1 parent 04e6c83 commit 49aab88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/Pages/RecruiterPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function DrawerExample(data) {
const { isOpen, onOpen, onClose } = useDisclosure();
const btnRef = React.useRef();
console.log(data.users);
/* useEffect(() => {
/* useEffect(() => {
getUserData();
}, []); */

Expand Down Expand Up @@ -76,7 +76,7 @@ export function DrawerExample(data) {

<DrawerBody>
<Input placeholder="Type here..." />
{/* {data.users.map((info, index) => (
{/* {data.users.map((info, index) => (
<Text key={index}>{data.users}</Text>
))} */}
</DrawerBody>
Expand Down Expand Up @@ -180,7 +180,7 @@ const RecruiterPage = () => {
console.log(allJobs);
};

console.log(auth.name);
console.log(auth[0].name);
return (
<Box
// height="100vh"
Expand All @@ -195,12 +195,12 @@ const RecruiterPage = () => {

<Box display="flex" alignItems="center" flexDirection="column">
<Avatar
name={auth.name}
name={auth[0].name}
src="https://bit.ly/broken-link"
size="xl"
mb={5}
/>
<Heading mb={5}>Welcome, {auth.name}</Heading>
<Heading mb={5}>Welcome, {auth[0].name}</Heading>
<Heading as="h1" size="3xl" fontWeight="bold" mb="8">
Post Your Job Here
</Heading>
Expand Down

0 comments on commit 49aab88

Please sign in to comment.