Skip to content

Commit 2674c88

Browse files
authored
fix(hono): avoid syntax error in composite routes (#1894)
1 parent ffc3be6 commit 2674c88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/hono/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ const generateCompositeRoutes = async (
986986
.map((verbOption) => {
987987
return generateHonoRoute(verbOption, verbOption.pathRoute);
988988
})
989-
.join();
989+
.join(';');
990990

991991
const importHandlers = Object.values(verbOptions);
992992

0 commit comments

Comments
 (0)