2677cd17d8
* new signin/signup * cleanup and password reset * new flow working * cleanup * add 'autoComplete' props * fix prop * try to call email/confirm before resetting password * Dont use password reset token for email confirmation. * add password reset * password manager improvements * update lbryinc * cleanup * slightly improve close button on sign up page * moar fixes * fix password autofil Co-authored-by: Mark Beamer Jr <markbeamerjr@gmail.com>
20 lines
459 B
JavaScript
20 lines
459 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
|
|
type Props = {
|
|
children: string,
|
|
};
|
|
|
|
export default function ErrorText(props: Props) {
|
|
const { children } = props;
|
|
|
|
if (!children) {
|
|
return null;
|
|
}
|
|
|
|
// Add a period to the end of error messages
|
|
let errorMessage = children[0].toUpperCase() + children.slice(1);
|
|
errorMessage = errorMessage.endsWith('.') ? errorMessage : `${errorMessage}.`;
|
|
|
|
return <span className="error__text">{errorMessage}</span>;
|
|
}
|