Commit 899f7903 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se eliminó momentaneamente el requisito de la fecha de nacimiento para el formulario de setup

parent cfded411
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -15,15 +15,13 @@ import { useSlideControl } from "../hooks/useSlideControl";
import { router } from "expo-router";

export const FirstTimeComfigScreen = () => {
  const { onSubmit, toogleInterest, interests, control } = useSetUpProfile();
  const { onSubmit, toogleInterest, interests } = useSetUpProfile();
  const onFinishCallback = () => {
    onSubmit();
  };
  console.log('render');
  const { onFinish, onNext, onPrevious, currentSlide } = useSlideControl(onFinishCallback);
  const slides = [
    <InterestSlide options={interests} onToogleOption={toogleInterest} />,
    <BirthdateSlide control={control} />,
  ];

  return (