Challenge | Stack | Resolved On |
---|---|---|
Update weekly goals | Astro | 2025-07-10 |
When a new weekly goal has been added to database, it doesn’t show in the UI. However, the operation on monthly goal works fine…
The use of “export” in the line #2 below is wrong
import {goals as fetch} from '@/lib/weekly';
export const data = await fetch("benben", 2025, 7);
After removing the “export”, data can be updated accordingly!