Skip to content

Commit

Permalink
Fixed wrong package name
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Jul 6, 2024
1 parent ea8942b commit 79c41c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/piral-core/src/tools/codegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export function createRouteHandler(imports: Array<string>, exports: Array<string
`);

if (emulator) {
imports.push(`import { useDebugRouteFilter } from 'piral-debug-utils.js';`);
imports.push(`import { useDebugRouteFilter } from 'piral-debug-utils';`);
assignments.push('return useDebugRouteFilter(paths);');
} else {
assignments.push('return paths;');
Expand Down

0 comments on commit 79c41c5

Please sign in to comment.