fix tests ugh
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 5m53s
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 5m53s
This commit is contained in:
@@ -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 });
|
||||
|
||||
Reference in New Issue
Block a user