fixing categories 3rd normal form
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 18m34s

This commit is contained in:
2026-01-19 19:10:02 -08:00
parent 4618d11849
commit 5879328b67
20 changed files with 655 additions and 132 deletions

View File

@@ -433,10 +433,10 @@ export const fetchWatchedItems = (tokenOverride?: string): Promise<Response> =>
export const addWatchedItem = (
itemName: string,
category: string,
category_id: number,
tokenOverride?: string,
): Promise<Response> =>
authedPost('/users/watched-items', { itemName, category }, { tokenOverride });
authedPost('/users/watched-items', { itemName, category_id }, { tokenOverride });
export const removeWatchedItem = (
masterItemId: number,