1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Fix fetchRow not working in internal API

This commit is contained in:
Andrew Kingston 2022-09-30 10:13:26 +01:00
parent 3ae18dd89e
commit df88fc57ff

View file

@ -8,10 +8,9 @@ export const buildRowEndpoints = API => ({
if (!tableId || !rowId) {
return null
}
const row = await API.get({
return await API.get({
url: `/api/${tableId}/rows/${rowId}`,
})
return (await API.enrichRows([row], tableId))[0]
},
/**