Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make data transfer pages live
  • Loading branch information
regalijan committed Nov 24, 2023
1 parent 574f543 commit 040a60a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/routes/data-transfer.tsx
Expand Up @@ -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>
Expand Down
@@ -1,4 +1,4 @@
import Success from "../../../components/Success.js";
import Success from "../../components/Success.js";

export default function () {
return (
Expand Down
Expand Up @@ -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", {
Expand Down Expand Up @@ -65,8 +68,6 @@ export default function () {
);
}}
pt="32px"
isLoading={loading}
loadingText="Processing..."
>
Continue
</Button>
Expand Down

0 comments on commit 040a60a

Please sign in to comment.