Skip to content

Commit

Permalink
change default return value to false
Browse files Browse the repository at this point in the history
  • Loading branch information
bcolloran committed Dec 14, 2023
1 parent aa7ac3d commit d49c160
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ export function resourceStatusStore(

const changed =
!lastUpdatedOn ||
(res.data?.meta?.stateUpdatedOn
(res.data?.meta?.stateUpdatedOn !== undefined
? res.data?.meta?.stateUpdatedOn > lastUpdatedOn
: undefined);
: false);

return {
status: !res.data?.meta?.reconcileError
Expand Down

0 comments on commit d49c160

Please sign in to comment.