asasvirtuais 2.3.2 → 2.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "asasvirtuais",
3
3
  "type": "module",
4
- "version": "2.3.2",
4
+ "version": "2.3.3",
5
5
  "description": "React form and action management utilities",
6
6
  "directories": {
7
7
  "packages": "./packages"
@@ -10,7 +10,7 @@ export function IndexedInterfaceProvider<Schema extends DatabaseSchema>({ dbName
10
10
  const memo = useMemo(() => indexedInterface(dbName, schema), [dbName, schema])
11
11
 
12
12
  return (
13
- <InterfaceProvider interface={memo}>
13
+ <InterfaceProvider {...memo}>
14
14
  {children}
15
15
  </InterfaceProvider>
16
16
  )