Make data transfer pages live
This commit is contained in:
parent
574f54346e
commit
040a60a6d9
@ -34,7 +34,7 @@ export default function () {
|
|||||||
</Text>
|
</Text>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<Button as="a" href="/data-transfer/start">
|
<Button as="a" href="/data-transfer/start" colorScheme="blue">
|
||||||
Start my Transfer
|
Start my Transfer
|
||||||
</Button>
|
</Button>
|
||||||
</Container>
|
</Container>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import Success from "../../../components/Success.js";
|
import Success from "../../components/Success.js";
|
||||||
|
|
||||||
export default function () {
|
export default function () {
|
||||||
return (
|
return (
|
@ -31,6 +31,9 @@ export default function () {
|
|||||||
style={{ display: showCookieBox ? "initial" : "none" }}
|
style={{ display: showCookieBox ? "initial" : "none" }}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
|
colorScheme="blue"
|
||||||
|
isLoading={loading}
|
||||||
|
loadingText="Processing..."
|
||||||
onClick={async () => {
|
onClick={async () => {
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
const createTransferReq = await fetch("/api/data-transfers/create", {
|
const createTransferReq = await fetch("/api/data-transfers/create", {
|
||||||
@ -65,8 +68,6 @@ export default function () {
|
|||||||
);
|
);
|
||||||
}}
|
}}
|
||||||
pt="32px"
|
pt="32px"
|
||||||
isLoading={loading}
|
|
||||||
loadingText="Processing..."
|
|
||||||
>
|
>
|
||||||
Continue
|
Continue
|
||||||
</Button>
|
</Button>
|
Loading…
x
Reference in New Issue
Block a user