regenerates lockfile

This commit is contained in:
Jacob Fletcher
2024-10-01 23:33:12 -04:00
parent e737c8db32
commit eca0a25063
2 changed files with 1195 additions and 68 deletions

View File

@@ -77,7 +77,7 @@ const MyComponent = () => {
}) as string
setResult(result)
}, [serverFunctions])
}, [serverFunction])
return (
<button onClick={callServerAction} type="button">
@@ -124,7 +124,7 @@ const Layout = ({ children }: Args) => (
<RootLayout
config={config}
importMap={importMap}
serverFunctions={serverFunctions} // highlight-line
serverFunction={serverFunction} // highlight-line
>
{children}
</RootLayout>