From 6ccefe7da596129e7bc08b261259b7b94fd1464b Mon Sep 17 00:00:00 2001 From: puriphatt Date: Mon, 10 Mar 2025 16:20:48 +0700 Subject: [PATCH] fix: correct casing of nameEn property to nameEN in Property type --- src/stores/property/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/property/types.ts b/src/stores/property/types.ts index 778b6504..b93e8fb3 100644 --- a/src/stores/property/types.ts +++ b/src/stores/property/types.ts @@ -1,5 +1,5 @@ export type Property = { name: string; - nameEn: string; + nameEN: string; type: Record; };