diff --git a/src/composables/usePermissions.ts b/src/composables/usePermissions.ts index ecf1ef3..dd624d8 100644 --- a/src/composables/usePermissions.ts +++ b/src/composables/usePermissions.ts @@ -34,11 +34,11 @@ export function usePermissions() { const checkPrivacyAccepted = (): boolean => { if (!privacyStore.isAccepted) { privacyStore.modalPrivacy = true - // $q.notify({ - // type: 'warning', - // message: 'กรุณายอมรับนโยบายคุ้มครองข้อมูลส่วนบุคคลก่อนใช้งาน', - // position: 'center', - // }) + $q.notify({ + type: 'warning', + message: 'กรุณายอมรับนโยบายคุ้มครองข้อมูลส่วนบุคคลก่อนใช้งาน', + position: 'top', + }) return false } return true