fix: correct casing of nameEn property to nameEN in Property type
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s

This commit is contained in:
puriphatt 2025-03-10 16:20:48 +07:00
parent 6dd20ce85f
commit 6ccefe7da5

View file

@ -1,5 +1,5 @@
export type Property = {
name: string;
nameEn: string;
nameEN: string;
type: Record<string, any>;
};