diff --git a/frontend/src/components/BatchCard.vue b/frontend/src/components/BatchCard.vue
index e8dd78c7..fe9d7b01 100644
--- a/frontend/src/components/BatchCard.vue
+++ b/frontend/src/components/BatchCard.vue
@@ -8,7 +8,7 @@
{{ batch.seats_left }}
@@ -20,7 +20,7 @@
{{ __('Sold Out') }}
diff --git a/frontend/src/components/Modals/Settings.vue b/frontend/src/components/Modals/Settings.vue
index 6824b530..f4c11d4f 100644
--- a/frontend/src/components/Modals/Settings.vue
+++ b/frontend/src/components/Modals/Settings.vue
@@ -137,7 +137,7 @@ const tabsStructure = computed(() => {
name: 'unsplash_access_key',
description:
'Optional. If this is set, students can pick a cover image from the unsplash library for their profile page. https://unsplash.com/documentation#getting-started.',
- type: 'text',
+ type: 'password',
},
],
},
diff --git a/lms/lms/doctype/lms_payment/lms_payment.py b/lms/lms/doctype/lms_payment/lms_payment.py
index 5173a653..187c2a9a 100644
--- a/lms/lms/doctype/lms_payment/lms_payment.py
+++ b/lms/lms/doctype/lms_payment/lms_payment.py
@@ -23,7 +23,7 @@ def send_payment_reminder():
incomplete_payments = frappe.get_all(
"LMS Payment",
{"payment_received": 0, "creation": [">", add_days(nowdate(), -1)]},
- fields=[
+ [
"name",
"member",
"payment_for_document",