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 18c8993 commit fb74704Copy full SHA for fb74704
2 files changed
app/web/features/auth/logins/LoginCard.tsx
@@ -52,14 +52,16 @@ export default function LoginsPage({
52
timestampToPlainDateTime(session.created!),
53
{
54
locale,
55
- includeSeconds: true
+ includeSeconds: true,
56
+ abbreviate: true,
57
},
58
);
59
const expiryDisplay = localizeDateTime(
60
timestampToPlainDateTime(session.expiry!),
61
62
- includeTime: false
63
+ includeTime: false,
64
65
66
67
const queryClient = useQueryClient();
app/web/features/profile/view/userLabels.tsx
@@ -285,6 +285,7 @@ export const RemainingAboutLabels = ({ user }: Props) => {
285
timestampToPlainDateTime(user.joined).toPlainDate(),
286
287
288
289
capitalize: true,
290
291
)
0 commit comments