Update dates to ISO

This commit is contained in:
Jesse Wierzbinski 2024-04-07 02:44:29 -10:00
parent 0d373b8866
commit 25d7a798ae
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

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