From 2d1bca9cb41d94d046caedd544ec44317e27a67d Mon Sep 17 00:00:00 2001 From: root Date: Thu, 28 May 2026 10:33:38 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20default=20city=3D=D0=A1=D0=B5=D0=B2?= =?UTF-8?q?=D0=B0=D1=81=D1=82=D0=BE=D0=BF=D0=BE=D0=BB=D1=8C=20when=20not?= =?UTF-8?q?=20specified?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/supabase/orderGroupRepository.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/supabase/orderGroupRepository.js b/src/services/supabase/orderGroupRepository.js index c7a2319..37c58cd 100644 --- a/src/services/supabase/orderGroupRepository.js +++ b/src/services/supabase/orderGroupRepository.js @@ -97,7 +97,7 @@ export const mapOrderGroupRowToDeliveryGroup = (row) => { const words = addr.split(/[,.]/)[0].trim(); return words; }; - const city = extractCity(customerAddress) || extractCity(deliveryAddress) || ""; + const city = extractCity(customerAddress) || extractCity(deliveryAddress) || "Севастополь"; return { id: row.id,