import * as React from 'react'; import Box from '../common/Box'; interface Props { baseUrl: string; subdomain: string; feedbackSpaceCreatedImage: string; } const ConfirmOAuthSignUpPage = ({ baseUrl, subdomain, feedbackSpaceCreatedImage, }: Props) => { let redirectUrl = new URL(baseUrl); redirectUrl.hostname = `${subdomain}.${redirectUrl.hostname}`; redirectUrl.pathname = '/users/sign_in'; return (

You're all set!

You'll be redirected to your feedback space in a few seconds.

If you are not redirected, please click here.

); }; export default ConfirmOAuthSignUpPage;