Skip to content

Commit

Permalink
Refactor reconciler logs configuration and update GraphQL query to si…
Browse files Browse the repository at this point in the history
…mplify error handling
  • Loading branch information
rbjornstad committed Dec 17, 2024
1 parent 9728ff3 commit a6078a9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions houdini.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ const config = {
return date.toISOString();
}
}
},
types: {
ReconcilerError: {
keys: ['correlationID']
}
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/routes/admin/reconcilerLogs/+page.gql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ query ReconcilerLogs {
displayName
name
description
errors(first: 10) {
errors {
nodes {
correlationID
createdAt
Expand Down
2 changes: 1 addition & 1 deletion src/routes/admin/reconcilerLogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
.toSorted((a, b) => b.createdAt.getTime() - a.createdAt.getTime());
</script>

<Table zebraStripes>
<Table size="small" zebraStripes>
<Thead>
<Tr>
<Th>Message</Th>
Expand Down

0 comments on commit a6078a9

Please sign in to comment.