Make data transfer pages live
This commit is contained in:
parent
574f54346e
commit
040a60a6d9
@ -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>
|
||||
|
@ -1,4 +1,4 @@
|
||||
import Success from "../../../components/Success.js";
|
||||
import Success from "../../components/Success.js";
|
||||
|
||||
export default function () {
|
||||
return (
|
@ -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>
|
Loading…
x
Reference in New Issue
Block a user