Merge branch 'develop' into release/0.0.3

This commit is contained in:
jwu-fisker
2022-11-28 15:55:15 -08:00
3 changed files with 67 additions and 1 deletions

View File

@@ -587,6 +587,11 @@ exports[`App Route / unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -1182,6 +1187,11 @@ exports[`App Route /home unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -2161,6 +2171,11 @@ exports[`App Route /package-deploy unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -2926,6 +2941,11 @@ exports[`App Route /package-status unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -3849,6 +3869,11 @@ exports[`App Route /packages unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -4369,6 +4394,11 @@ exports[`App Route /supplier/{email} unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -5160,6 +5190,11 @@ exports[`App Route /tools/certificates/add unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -5817,6 +5852,11 @@ exports[`App Route /tools/sms/send unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -7032,6 +7072,11 @@ exports[`App Route /vehicle-add unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -7838,6 +7883,11 @@ exports[`App Route /vehicle-status unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -7894,6 +7944,11 @@ exports[`App Route /vehicle-status/vin/carupdateid unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>
@@ -8751,6 +8806,11 @@ exports[`App Route /vehicles unauthenticated 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</main>
</main>

View File

@@ -20,6 +20,11 @@ exports[`Sign In Form Should render 1`] = `
class="MuiTouchRipple-root"
/>
</a>
<p>
<strong>
Note: Your email address will be used as the user id
</strong>
</p>
</div>
</div>
`;

View File

@@ -1,6 +1,6 @@
import React, { useEffect } from "react";
import { Button } from "@material-ui/core";
import clsx from "clsx";
import React, { useEffect } from "react";
import { useUserContext } from "../Contexts/UserContext";
import useStyles from "../useStyles";
@@ -34,6 +34,7 @@ export default function SignInForm() {
>
{fetching ? "Please wait..." : "Sign In"}
</Button>
<p><strong>Note: Your email address will be used as the user id</strong></p>
</div>
);
}