fix: removed user_ids from create list payload; improved share button on invites

This commit is contained in:
2026-09-01 15:29:31 +02:00
parent 3998679810
commit 6196556012
6 changed files with 46 additions and 8 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ describe('lists API', () => {
} as unknown as Response)
global.fetch = fetchMock
const result = await createListApi({ name: 'Groceries', user_ids: [] })
const result = await createListApi({ name: 'Groceries' })
expect(fetchMock).toHaveBeenCalledWith(
`${API_BASE_URL}/lists`,