Skip to content

Commit

Permalink
fix(veeam-backup): fix dashboard loading
Browse files Browse the repository at this point in the history
ref: INC0113791, MANAGER-17163

Signed-off-by: Thibault Barske <[email protected]>
  • Loading branch information
tibs245 committed Feb 20, 2025
1 parent 5c767a4 commit d05c464
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function DashboardPage() {
const getRealOfferConsumption = (
offer: VeeamBackupOffer,
): VeeamBackupOffer => {
const consumption = consumptions.find(
const consumption = consumptions?.find(
({ planCode }) =>
planCode === VEEAM_BACKUP_CONSUMPTION_PLAN_CODE[offer.name],
);
Expand Down

0 comments on commit d05c464

Please sign in to comment.