fix: remove unnecessary slash from default command

This commit is contained in:
d-kimsuon
2025-09-03 19:43:01 +09:00
parent bac15be020
commit 7800037455

View File

@@ -165,7 +165,7 @@ export const routes = (app: HonoAppType) => {
globalCommands.status === "fulfilled" ? globalCommands.value : [],
projectCommands:
projectCommands.status === "fulfilled" ? projectCommands.value : [],
defaultCommands: ["/init", "/compact"],
defaultCommands: ["init", "compact"],
});
})