Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Lol oops
  • Loading branch information
Regalijan authored and Regalijan committed Oct 24, 2023
1 parent 04c578a commit d2b7309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/me.tsx
Expand Up @@ -46,7 +46,7 @@ export async function loader({ context }: { context: RequestContext }) {
const settledPromises = await Promise.allSettled(d1Promises);

return {
items: settledPromises.filter((p) => {
items: settledPromises.map((p) => {
if (p.status === "fulfilled") return p.value.results;

return null;
Expand Down

0 comments on commit d2b7309

Please sign in to comment.