Make destination account route not die

This commit is contained in:
Regalijan 2023-11-24 02:39:11 -05:00
parent 040a60a6d9
commit 826a849707
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -2,10 +2,13 @@ import { Button, Card, Container, Heading, VStack } from "@chakra-ui/react";
import { useLoaderData } from "@remix-run/react";
export async function loader({ context }: { context: RequestContext }) {
return context.env.ROBLOX_OAUTH_CLIENT_ID;
const { host, protocol } = new URL(context.request.url);
return { client_id: context.env.ROBLOX_OAUTH_CLIENT_ID, host, protocol };
}
export default function () {
const loaderData = useLoaderData<typeof loader>();
return (
<Container pt="16vh">
<Card borderRadius="32px" p="4vh">
@ -16,10 +19,10 @@ export default function () {
as="a"
borderRadius="24px"
colorScheme="blue"
href={`https://apis.roblox.com/oauth/v1/authorize?client_id=${useLoaderData<
typeof loader
>()}&redirect_uri=${encodeURIComponent(
`${location.protocol}//${location.host}/api/data-transfers/verify`,
href={`https://apis.roblox.com/oauth/v1/authorize?client_id=${
loaderData.client_id
}&redirect_uri=${encodeURIComponent(
`${loaderData.protocol}//${loaderData.host}/api/data-transfers/verify`,
)}&response_type=code&scope=openid%20profile`}
>
Verify