Remove Axios import in web hook.ts

This commit is contained in:
Alex Tran 2022-07-13 08:25:43 -05:00
parent bece6253d5
commit 229b009b7f
No known key found for this signature in database
GPG Key ID: E4954BC787B85C8A

View File

@ -1,7 +1,6 @@
import type { GetSession, Handle } from '@sveltejs/kit';
import * as cookie from 'cookie';
import { api } from '@api';
import AxiosError from 'axios';
export const handle: Handle = async ({ event, resolve }) => {
const cookies = cookie.parse(event.request.headers.get('cookie') || '');
@ -31,12 +30,7 @@ export const handle: Handle = async ({ event, resolve }) => {
return response;
} catch (error) {
if (error instanceof AxiosError) {
console.log('Error validating token');
return await resolve(event);
}
console.log('Error parsing session');
console.log('Error [handle]', error);
return await resolve(event);
}
};