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 8640d7d commit 978109fCopy full SHA for 978109f
frontend/routes/account/tokens/index.tsx
@@ -105,7 +105,7 @@ function PersonalTokenRow({ token }: { token: Token }) {
105
<b>Active</b> {expiresAt === null
106
? "forever"
107
: `– expires ${
108
- timeAgo(new Date().getTime(), expiresAt.getTime()).replace(
+ timeAgo(expiresAt).replace(
109
"ago",
110
"from now",
111
)
@@ -160,7 +160,7 @@ function SessionRow({ token }: { token: Token }) {
160
161
162
163
- timeAgo(expiresAt.getTime()).replace(
164
165
166
0 commit comments