update to volunteer

This commit is contained in:
Mann Patel
2025-08-28 17:09:23 -06:00
parent 9dd24e71e7
commit 1955407d7c
16 changed files with 1075 additions and 306 deletions

View File

@@ -18,7 +18,7 @@ func GetCurrentUserName(r *http.Request) (string, error) {
var currentUserName string
err := DB.QueryRow(`
SELECT first_name || ' ' || last_name
SELECT first_name
FROM users
WHERE user_id = $1
`, currentUserID).Scan(&currentUserName)