mirror of
https://github.com/Amperra-Group/xcs.git
synced 2025-08-17 05:42:13 -06:00
slight oops, fixed unicode issue
This commit is contained in:
parent
4b926982cf
commit
a99c4e5ea2
|
@ -205,7 +205,7 @@ export default function Login() {
|
||||||
{(props) => (
|
{(props) => (
|
||||||
<Form>
|
<Form>
|
||||||
<ModalBody>
|
<ModalBody>
|
||||||
<Text mb={4}>Enter your email address below and we'll send you a link to reset your password.</Text>
|
<Text mb={4}>Enter your email address below and we'll send you a link to reset your password.</Text>
|
||||||
<Field name="email">
|
<Field name="email">
|
||||||
{({ field, form }: any) => (
|
{({ field, form }: any) => (
|
||||||
<FormControl isInvalid={form.errors.email && form.touched.email}>
|
<FormControl isInvalid={form.errors.email && form.touched.email}>
|
||||||
|
@ -225,7 +225,6 @@ export default function Login() {
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
colorScheme="blue"
|
|
||||||
isLoading={props.isSubmitting}
|
isLoading={props.isSubmitting}
|
||||||
type="submit"
|
type="submit"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue