Pass datasource to instance

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

View File

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