Skip to content

Commit 43fa8e2

Browse files
committed
chore: wip
1 parent 6b40b41 commit 43fa8e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

storage/framework/core/router/src/router.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ export class Router implements RouterInterface {
289289

290290
if (modulePath.includes('storage/framework/orm'))
291291
actionModule = await import(modulePath)
292-
else if (modulePath.includes('app/Actions'))
293-
actionModule = await import(modulePath)
292+
else if (modulePath.includes('Actions'))
293+
actionModule = await import(p.projectPath(`app/${modulePath}.ts`))
294294
else if (modulePath.includes('OrmAction'))
295295
actionModule = await import(p.storagePath(`/framework/actions/src/${modulePath}.ts`))
296296
else actionModule = await import(importPathFunction(modulePath))

0 commit comments

Comments
 (0)