We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccc0a8e commit 80412f9Copy full SHA for 80412f9
packages/start-server-core/src/server-functions-handler.ts
@@ -60,9 +60,8 @@ export const handleServerAction = async ({ request }: { request: Request }) => {
60
throw new Error('Server function info not found for ' + serverFnId)
61
}
62
63
- let fnModule: undefined | { [key: string]: any }
64
-
65
- fnModule = await serverFnInfo.importer()
+ const fnModule: undefined | { [key: string]: any } =
+ await serverFnInfo.importer()
66
67
if (!fnModule) {
68
console.info('serverFnInfo', serverFnInfo)
0 commit comments