diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue
index fef5d5e..9282d84 100644
--- a/src/views/HomeView.vue
+++ b/src/views/HomeView.vue
@@ -30,8 +30,7 @@ const hasOrganization = computed(() => {
const org = data.organization
// ตรวจสอบว่ามีค่าที่ไม่ใช่ null, undefined หรือ string ว่าง
- const hasValue = (val: string | null | undefined) =>
- val && val.trim() !== ''
+ const hasValue = (val: string | null | undefined) => val && val.trim() !== ''
return !!(
hasValue(org.root) ||
@@ -782,6 +781,7 @@ watch(
>