Corrección de proptypes

This commit is contained in:
Germán Enríquez 2023-12-26 14:56:28 -05:00
parent 58d69e85b2
commit 98d848798c
2 changed files with 7 additions and 4 deletions

View file

@ -21,7 +21,7 @@ const ErrorAlert = ({titulo,texto,align = "center",severity = "error"}) => {
);
};
Error.propTypes={
ErrorAlert.propTypes={
titulo: PropTypes.string.isRequired,
texto: PropTypes.string,
align: PropTypes.string,

View file

@ -65,7 +65,10 @@ const Inicializar = ({
return (
<Idioma messages={messages} idiomaDefecto={idiomaDefecto}>
<Tema>
<InicializarInner devURL={devAuthURL}>
<InicializarInner
devURL={devAuthURL}
basename={basename}
>
{children}
</InicializarInner>
</Tema>