This commit is contained in:
Nicholas Zuber 2023-01-15 13:48:26 -05:00
parent c4c0d25253
commit de4101c5d9

View File

@ -7,7 +7,7 @@ export default class TokenHandler extends React.Component {
const code = params.code;
if (code) {
this.props.onSetLoading(true);
fetch(`https://meteorite-gatekeeper.herokuapp.com/authenticate/${code}`)
fetch(`https://getskipper.dev/api/meteorite-auth/${code}`)
.then(response => response.json())
.then(({token, error}) => {
this.props.onSetLoading(false);