2023-05-25 20:26:39 +00:00
|
|
|
import 'packs/public-path';
|
|
|
|
import axios from 'axios';
|
|
|
|
|
2023-05-28 14:38:10 +00:00
|
|
|
import ready from 'flavours/glitch/ready';
|
|
|
|
|
2023-05-25 20:26:39 +00:00
|
|
|
ready(() => {
|
|
|
|
setInterval(() => {
|
|
|
|
axios.get('/api/v1/emails/check_confirmation').then((response) => {
|
|
|
|
if (response.data) {
|
|
|
|
window.location = '/start';
|
|
|
|
}
|
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|
|
|
|
}, 5000);
|
|
|
|
});
|