Skip to content

Commit

Permalink
fix: ignore row with text that crashed MDX remote component
Browse files Browse the repository at this point in the history
  • Loading branch information
ncrmro committed Dec 3, 2023
1 parent 61c34c5 commit 65d4bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/dashboard/journal/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default async function JournalPage() {
])
.orderBy("created_date", "desc")
.where("user_id", "=", viewer.id)
.where("id", "not in", ["7096f4f6-ced7-4aa7-8a4a-14d1661fd3b3", "86db5c72-bfac-4caa-9879-ce6a4faaecbe"])
.where("id", "not in", ["7096f4f6-ced7-4aa7-8a4a-14d1661fd3b3", "7b5b4a6d-008b-4d11-9aaf-66f8acb41d29"])
.execute();
const todayEntry =
posts[0]?.created_date === currentTimezoneMidnightUnixTimestamp(timezone)
Expand Down

0 comments on commit 65d4bf4

Please sign in to comment.