Fixed this missed item

Signed-off-by: Andre Wanlin <awanlin@rapidrtc.com>
This commit is contained in:
Andre Wanlin
2021-10-12 14:23:36 -05:00
parent 9cfbf27f6d
commit 3135d711d8
@@ -26,7 +26,7 @@ export function useRepoBuilds(
entity: Entity,
defaultLimit?: number,
): {
items: RepoBuild[];
items: RepoBuild[] | undefined;
loading: boolean;
error: any;
} {
@@ -41,7 +41,7 @@ export function useRepoBuilds(
}, [api, project, repo, entity]);
return {
items: value?.items as RepoBuild[],
items: value?.items,
loading,
error,
};