We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a54bc20 commit 0e32ef7Copy full SHA for 0e32ef7
.prettierignore
@@ -1 +1,2 @@
1
pnpm-lock.yaml
2
+CHANGELOG.md
renovate.json
@@ -1,6 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
- "extends": [
4
- "config:recommended"
5
- ]
+ "extends": ["config:recommended"]
6
}
src/server.ts
@@ -53,7 +53,9 @@ export function newServer() {
53
54
55
if (token.exp) {
56
- messageParts.push(`- **Expiration**: ${new Date(token.exp)}`);
+ messageParts.push(
57
+ `- **Expiration**: ${new Date(token.exp * 1000)}`,
58
+ );
59
60
61
0 commit comments