Fix wrong again in token date format

This commit is contained in:
Jesse Wierzbinski 2024-04-07 02:47:19 -10:00
parent 25d7a798ae
commit e71c2ef5c9
No known key found for this signature in database

View file

@ -58,6 +58,6 @@ export default apiRoute<{
access_token: token.access_token,
token_type: token.token_type,
scope: token.scope,
created_at: new Date(token.created_at).toISOString(),
created_at: Number(token.created_at),
});
});