fix: response arg

This commit is contained in:
cha0s 2024-02-18 23:06:17 -06:00
parent ddf0dff6f6
commit b9dfea12d5

View File

@ -3,7 +3,7 @@ import {Provider} from 'react-redux';
export const hooks = { export const hooks = {
'@flecks/react.providers': Flecks.priority( '@flecks/react.providers': Flecks.priority(
async (req, flecks) => [Provider, {store: flecks.redux}], async (req, res, flecks) => [Provider, {store: flecks.redux}],
{before: '@flecks/react/router/client'}, {before: '@flecks/react/router/client'},
), ),
}; };