Skip to content

Commit

Permalink
Fix typo in backups overview (#23446)
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob authored Dec 24, 2024
1 parent 33b410d commit 54eb7d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class HaBackupOverviewBackups extends LitElement {
const now = new Date();

const lastBackupDescription = lastSuccessfulBackup
? `Last successful backup ${relativeTime(lastSuccessfulBackupDate, this.hass.locale, now, true)} and stored to ${lastSuccessfulBackup.agent_ids?.length} locations.`
? `Last successful backup ${relativeTime(lastSuccessfulBackupDate, this.hass.locale, now, true)} and stored in ${lastSuccessfulBackup.agent_ids?.length} locations.`
: "You have no successful backups.";

if (lastAttempt && lastAttempt > lastSuccessfulBackupDate) {
Expand Down

0 comments on commit 54eb7d1

Please sign in to comment.