Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
vadson71 committed Jan 10, 2024
1 parent d532404 commit 825e962
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/context/src/ui5-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,7 @@ async function isVersionLibsCacheValid(
} catch (e) {
apiJson = undefined;
}
return (
apiJson &&
typeof apiJson === "object"
);
return apiJson && typeof apiJson === "object";
})
);
return result.every((item) => !!item);
Expand Down

0 comments on commit 825e962

Please sign in to comment.