From af3fa177aa36a4082bf59c1613c918b466bedbf6 Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Mon, 12 Jan 2026 13:07:34 -0600 Subject: [PATCH] Phrasing tweak for exceeding storage limit --- saas/app/views/account/settings/_free_plan.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saas/app/views/account/settings/_free_plan.html.erb b/saas/app/views/account/settings/_free_plan.html.erb index edb5bb57a..ca467d8af 100644 --- a/saas/app/views/account/settings/_free_plan.html.erb +++ b/saas/app/views/account/settings/_free_plan.html.erb @@ -4,7 +4,7 @@ <% elsif Current.account.exceeding_card_limit? %> You’ve used up your <%= number_with_delimiter(Plan.free.card_limit) %> free cards <% elsif Current.account.exceeding_storage_limit? %> - You’ve used up all <%= storage_to_human_size(Plan.free.storage_limit) %> free storage + You’ve used up all <%= storage_to_human_size(Plan.free.storage_limit) %> of free storage <% else %> You’ve used <%= Current.account.billed_cards_count %> free cards out of <%= number_with_delimiter(Plan.free.card_limit) %> <% end %>