diff --git a/apps/note/templates/note/transaction_form.html b/apps/note/templates/note/transaction_form.html
index acb09beb..15478219 100644
--- a/apps/note/templates/note/transaction_form.html
+++ b/apps/note/templates/note/transaction_form.html
@@ -38,7 +38,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
{# Preview note profile (picture, username and balance) #}
-
![](/media/pic/default.png)
diff --git a/note_kfet/static/js/base.js b/note_kfet/static/js/base.js
index a20c72bc..8315f01a 100644
--- a/note_kfet/static/js/base.js
+++ b/note_kfet/static/js/base.js
@@ -122,7 +122,7 @@ function displayStyle (note) {
*/
function displayNote (note, alias, user_note_field = null, profile_pic_field = null) {
if (!note.display_image) {
- note.display_image = '/media/pic/default.png';
+ note.display_image = '/static/member/img/default_picture.png';
}
let img = note.display_image;
if (alias !== note.name && note.name)
diff --git a/note_kfet/static/js/consos.js b/note_kfet/static/js/consos.js
index fc04b2b2..ec5a0940 100644
--- a/note_kfet/static/js/consos.js
+++ b/note_kfet/static/js/consos.js
@@ -158,7 +158,7 @@ function reset() {
$("#consos_list").html("");
$("#note").val("");
$("#note").attr("data-original-title", "").tooltip("hide");
- $("#profile_pic").attr("src", "/media/pic/default.png");
+ $("#profile_pic").attr("src", "/static/member/img/default_picture.png");
$("#profile_pic_link").attr("href", "#");
refreshHistory();
refreshBalance();
diff --git a/note_kfet/static/js/transfer.js b/note_kfet/static/js/transfer.js
index 28b28aef..cbae7456 100644
--- a/note_kfet/static/js/transfer.js
+++ b/note_kfet/static/js/transfer.js
@@ -40,7 +40,7 @@ function reset(refresh=true) {
$("#first_name").val("");
$("#bank").val("");
$("#user_note").val("");
- $("#profile_pic").attr("src", "/media/pic/default.png");
+ $("#profile_pic").attr("src", "/static/member/img/default_picture.png");
$("#profile_pic_link").attr("href", "#");
if (refresh) {
refreshBalance();