Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/ThePandaDevs/pibe-app in…
Browse files Browse the repository at this point in the history
…to develop
  • Loading branch information
Sterplay2010 committed Aug 25, 2022
2 parents 1261273 + 4b858b4 commit 65b23a8
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

<title>React App</title>
<title>PIBE</title>
</head>
<body style="background-color:#EAF3FB">
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
8 changes: 4 additions & 4 deletions src/components/landing_page/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import React from "react";
import Logo from "../../resources/static/img/logo.svg"
export const Footer = () => {
return (
<footer class="sticky w-full top-[100vh] bg-primary">
<div class="flex justify-content-center">
<div class="flex align-items-center justify-content-center text-white m-2"><img src={Logo} alt="Pibe Logo" /></div>
<div class="flex align-items-center justify-content-center text-white m-2">PIBE Plataform | © 2022 All rights reserved</div>
<footer className="sticky w-full top-[100vh] bg-primary">
<div className="flex justify-content-center">
<div className="flex align-items-center justify-content-center text-white m-2"><img src={Logo} alt="Pibe Logo" /></div>
<div className="flex align-items-center justify-content-center text-white m-2">PIBE Plataform | © 2022 All rights reserved</div>
</div>
</footer>
)
Expand Down
1 change: 0 additions & 1 deletion src/components/navbar/LeftContents.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const LeftContents = () => {
label: 'MIS FAVORITAS',
command: () => {
navigate('/candidate/favorites');
console.log(params.opc)
setOpcRouter("favorites")
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ export const PersonalData = () => {
.getProfileUser(token, userSession.username)
.then((response) => response.json())
.then((result) => {
console.log(result)
setProfile(result);
})
.catch((error) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ export const CardData = ({ data, getUsersByVacant }) => {
footer={footer}
className='w-25rem m-5 shadow-3 hover:shadow-6'>
<Toast ref={toast} />
{console.log(data)}
<div className='container p-0 m-0'>
<div className='text-center'>
<img
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export const BenefitsVacant = ({
value={benefits}
className={classNames({ 'p-invalid': benefits.length === 0 })}
onChange={(e) => setBenefits(e.value)}
separator=','
/>
<label htmlFor='dropdown'>Beneficios</label>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const PrincipalContent = () => {
id: 0,
name: '',
},
startDate: '',
startDate: new Date().toISOString().substring(0, 10),
state: {
id: 0,
name: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const BenefitsVacant = ({
value={benefits}
className={classNames({ 'p-invalid': benefits.length === 0 })}
onChange={(e) => setBenefits(e.value)}
separator=','
/>
<label htmlFor='dropdown'>Beneficios</label>
</span>
Expand Down

0 comments on commit 65b23a8

Please sign in to comment.