forgot to export function

This commit is contained in:
chris 2025-08-10 09:01:16 -04:00
parent d41170ab61
commit cab217cf24

View File

@ -309,7 +309,7 @@ export async function handleViewNotesClick() {
}
}
// This function ONLY updates the pending requests table.
function updatePendingRequestsList(requests) {
export function updatePendingRequestsList(requests) {
const tableBody = document.querySelector('#tab-content-overview table tbody');
if (!tableBody) return; // Exit if the table isn't on the page