Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fmt
  • Loading branch information
deansheather committed Aug 19, 2025
commit c90d74a1ba1e474fac23501dc15692b272710902
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ export const ManagedAgentsConsumption: FC<ManagedAgentsConsumptionProps> = ({
return <ErrorAlert error="Invalid usage data" />;
}

if (included === undefined || included < 0 || limit === undefined || limit < 0) {
if (
included === undefined ||
included < 0 ||
limit === undefined ||
limit < 0
) {
return <ErrorAlert error="Invalid license usage limits" />;
}

Expand Down
Loading