Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Read approved property from d1 instead of nonexistent kv data
  • Loading branch information
regalijan committed Oct 26, 2023
1 parent 528ba3a commit 56370c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/me.tsx
Expand Up @@ -297,7 +297,7 @@ export default function () {
<Td>
{result.open
? "Pending"
: Object.values(result.decisions).find((d) => !d)
: result.approved
? "Denied"
: "Approved"}
</Td>
Expand Down

0 comments on commit 56370c0

Please sign in to comment.