Skip to content

Commit

Permalink
Update devtools-exome.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcisbee committed Feb 22, 2024
1 parent 26c7d4d commit 64f943c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/devtools-exome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,9 @@ export const exomeDevtools = ({
});

return (error) => {
action.error = error as any;
if (error !== undefined) {
action.error = String(error);
}
action.time = performance.now() - start;
action.after = exomeToJson(instance);

Expand Down

0 comments on commit 64f943c

Please sign in to comment.