fix tests ugh
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 5m53s

This commit is contained in:
2025-12-09 16:03:11 -08:00
parent c60e19a03b
commit 3a66f31d55
11 changed files with 141 additions and 58 deletions

View File

@@ -34,7 +34,6 @@ export const useShoppingLists = () => {
const response = await apiClient.createShoppingList(name);
const newList: ShoppingList = await response.json();
setShoppingLists(prev => [...prev, newList]);
setActiveListId(newList.shopping_list_id);
} catch (e) {
const errorMessage = e instanceof Error ? e.message : String(e);
logger.error('Could not create list', { error: errorMessage });