Skip to content

Commit

Permalink
Backup: fix price detail text condition
Browse files Browse the repository at this point in the history
  • Loading branch information
IanRamosC committed Jan 19, 2023
1 parent 5f9b34e commit 9cb9acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/packages/backup/src/js/components/Admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ const NoBackupCapabilities = () => {
'jetpack-backup-pkg'
);
const priceDetails =
introOffer && introOffer.interval_unit === 'month'
introOffer.interval_unit === 'month' && introOffer.interval_count === 1
? __( 'for the first month, billed yearly', 'jetpack-backup-pkg' )
: __( 'per month, billed yearly', 'jetpack-backup-pkg' );

Expand Down

0 comments on commit 9cb9acf

Please sign in to comment.