Skip to content

Commit

Permalink
ts fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tdraier committed Aug 9, 2024
1 parent e37c951 commit 0badc0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/lib/api/vaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const getManagedDataSourceContent = async (
}
}
const err = contentNodes.find((r) => r.isErr());
if (err) {
if (err?.isErr()) {
return err;
}

Expand Down

0 comments on commit 0badc0b

Please sign in to comment.