Skip to content

Commit 63ce0e9

Browse files
committed
update resourcesbyselector
1 parent 94b7b0e commit 63ce0e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/ResourcesBySelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export default function ResourcesBySelector({
127127
)}
128128
{showLastUpdated && (
129129
<span className="line-clamp-3" title={page.data.description}>
130-
Updated {timeAgo(page.data.updated)}
130+
Updated {timeAgo(page.data.reviewed)}
131131
</span>
132132
)}
133133
</a>

src/schemas/stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const streamSchema = z.object({
1010
transcript: z.string().optional(),
1111
chapters: z.record(z.string(), z.string()).optional(),
1212
tags: z.array(z.string()).optional(),
13-
updated: z.date().optional(),
13+
reviewed: z.date().optional(),
1414
thumbnail: z
1515
.object({
1616
url: z.string(),

0 commit comments

Comments
 (0)