Challenge

Stack

Resolved On

Update weekly goalsAstro2025-07-10

Problem

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…

Solution

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!