fix: API key "Last used" showed date only, not time

Also removes HANDOFF.md, SECURITY_AUDIT.md, TODO.md (stale docs).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Arnaud
2026-07-14 09:42:04 +02:00
parent a08588cf85
commit 6096e49008
8 changed files with 26 additions and 265 deletions
@@ -35,6 +35,16 @@ function formatDate(iso: string) {
});
}
function formatDateTime(iso: string) {
return new Date(iso).toLocaleString(undefined, {
year: "numeric",
month: "short",
day: "numeric",
hour: "numeric",
minute: "2-digit",
});
}
export function ApiKeysManager({ initialKeys }: { initialKeys: ApiKey[] }) {
const t = useTranslations("settingsForm");
const [keys, setKeys] = useState<ApiKey[]>(initialKeys);
@@ -173,7 +183,7 @@ export function ApiKeysManager({ initialKeys }: { initialKeys: ApiKey[] }) {
<span>{t("createdOn", { date: formatDate(k.createdAt) })}</span>
<span>·</span>
{k.lastUsedAt ? (
<span>{t("lastUsedOn", { date: formatDate(k.lastUsedAt) })}</span>
<span>{t("lastUsedOn", { date: formatDateTime(k.lastUsedAt) })}</span>
) : (
<Badge variant="secondary" className="text-xs">{t("neverUsed")}</Badge>
)}
+8 -1
View File
@@ -1,5 +1,5 @@
// Mirrors CHANGELOG.md at the repo root — update both together.
export const APP_VERSION = "0.25.0";
export const APP_VERSION = "0.25.1";
export type ChangelogEntry = {
version: string;
@@ -11,6 +11,13 @@ export type ChangelogEntry = {
};
export const CHANGELOG: ChangelogEntry[] = [
{
version: "0.25.1",
date: "2026-07-14 09:40",
fixed: [
"API key \"Last used\" only showed a date — now shows date and time.",
],
},
{
version: "0.25.0",
date: "2026-07-14 09:36",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@epicure/web",
"version": "0.25.0",
"version": "0.25.1",
"private": true,
"scripts": {
"dev": "next dev",