From c4771db9aae585d983eadcdb80fb5b38775c44d2 Mon Sep 17 00:00:00 2001 From: nfebe Date: Sun, 28 Jun 2026 11:33:19 +0100 Subject: [PATCH] refactor(config): Rename country preference key to country The user country preference now uses the key "country" instead of "default-country". Nothing reads from a non-default country, so the default- prefix was misleading next to the other locale preferences. --- utils/configurationKeys.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/configurationKeys.ts b/utils/configurationKeys.ts index 35411e1..6cb95f2 100644 --- a/utils/configurationKeys.ts +++ b/utils/configurationKeys.ts @@ -6,7 +6,7 @@ export const CONFIGURATION_KEYS = { LANGUAGE: 'default-lang', - COUNTRY: 'default-country', + COUNTRY: 'country', CURRENCY: 'default-currency', WALLET: 'default-wallet', GROUP: 'default-group',