debug msg

This commit is contained in:
Chris Grimmett 2024-02-27 11:53:57 -08:00
parent cf674f7cc6
commit abd7873ec7
2 changed files with 3 additions and 3 deletions

View File

@ -80,8 +80,8 @@ export async function getGoals(pledgeSum: number): Promise<IGoals | null> {
const funded = filterAndSortGoals(openData.concat(closedData), true); const funded = filterAndSortGoals(openData.concat(closedData), true);
const unfunded = filterAndSortGoals(openData.concat(closedData), false); const unfunded = filterAndSortGoals(openData.concat(closedData), false);
console.log('the following are unfunded goals') // console.log('the following are unfunded goals')
console.log(unfunded) // console.log(unfunded)
return { return {
complete: closedData, complete: closedData,

View File

@ -120,7 +120,7 @@ export async function getAllVtubers(): Promise<IVtuber[] | null> {
}); });
try { try {
console.log(`Getting /api/vtubers page=${currentPage}`); console.log(`Getting ${strapiUrl}/api/vtubers page=${currentPage}`);
const response = await fetch(`${strapiUrl}/api/vtubers?${query}`, fetchVtubersOptions); const response = await fetch(`${strapiUrl}/api/vtubers?${query}`, fetchVtubersOptions);
if (!response.ok) { if (!response.ok) {