Pass datasource to instance

This commit is contained in:
Adria Navarro 2025-01-09 14:32:15 +01:00
parent a3b8130702
commit 40192097d8
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ const getDatasourceFetchInstance = datasource => {
if (!handler) { if (!handler) {
return null return null
} }
return new handler({ API }) return new handler({ API, datasource })
} }
/** /**