Skip to content

Commit

Permalink
fix: ordem de inserir a data de nascimento
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnypaulino committed Nov 22, 2024
1 parent 0c5ade2 commit 2976a12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Pages/Beneficiaries/BeneficiariesCreate/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ const RegistrationPage = () => {
<Padding />
<CalendarComponent
value={values.birthday}
dateFormat="dd/mm/yy"
placeholder="Data de Nascimento"
name="birthday"
onChange={handleChange}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,12 @@ const Beneficiarios = () => {
for (const foul of fouls) {
array.push(foul.id);
}

return array;
};

console.log(FilterId(selectedProducts))

const bodyRegisterFouls = (dataRow: RegisterClassroom) => {
return (
<Row id="center">
Expand Down Expand Up @@ -338,6 +341,7 @@ const Beneficiarios = () => {
Swal.fire({title: "Para conseguir salvar a lista, é necessario adicionar um arquivo como uma evidência da aula", icon: 'error',})
} else{

console.log()
props.CreateFouls({
meeting: props.meeting?.id!,
registration: FilterId(selectedProducts),
Expand Down

0 comments on commit 2976a12

Please sign in to comment.