Fixed linting issue

This commit is contained in:
Conor Webb 2024-02-22 11:16:38 +00:00
parent 68719f1dda
commit b5d44dfcfd
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ export async function fetch(ctx: BBContext) {
ctx.status = 200
ctx.body = definitions
} catch (error) {
console.error('Error fetching definitions:', error)
console.error("Error fetching definitions:", error)
ctx.status = 500
ctx.body = { error: 'Internal server error' }
ctx.body = { error: "Internal server error" }
}
}