1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Fix fetchRow not working in internal API

This commit is contained in:
Andrew Kingston 2022-09-30 10:13:26 +01:00
parent 980715d15e
commit 9a43f865c9

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]
},
/**