Make data transfer pages live

This commit is contained in:
Regalijan 2023-11-24 02:20:27 -05:00
parent 574f54346e
commit 040a60a6d9
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520
4 changed files with 5 additions and 4 deletions

View File

@ -34,7 +34,7 @@ export default function () {
</Text>
<br />
<br />
<Button as="a" href="/data-transfer/start">
<Button as="a" href="/data-transfer/start" colorScheme="blue">
Start my Transfer
</Button>
</Container>

View File

@ -1,4 +1,4 @@
import Success from "../../../components/Success.js";
import Success from "../../components/Success.js";
export default function () {
return (

View File

@ -31,6 +31,9 @@ export default function () {
style={{ display: showCookieBox ? "initial" : "none" }}
/>
<Button
colorScheme="blue"
isLoading={loading}
loadingText="Processing..."
onClick={async () => {
setLoading(true);
const createTransferReq = await fetch("/api/data-transfers/create", {
@ -65,8 +68,6 @@ export default function () {
);
}}
pt="32px"
isLoading={loading}
loadingText="Processing..."
>
Continue
</Button>