Skip to content

Commit 8e1ceb8

Browse files
committed
fix: add closing quote for rule search err msg
1 parent d85a8af commit 8e1ceb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/rules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ rules.get(
8585
.flatMap(group => group.rules)
8686
.find(({ rule }) => rule === `<${inputRule}>`);
8787
if (!targetRule) {
88-
return c.json(errorJson(`Unable to find rule '<${inputRule}>`), 404);
88+
return c.json(errorJson(`Unable to find rule '<${inputRule}>'`), 404);
8989
}
9090

9191
const [ruleQuestionsError, ruleQuestions] = await trycatch(() =>

0 commit comments

Comments
 (0)