fix typo on AdminController flash message

This commit is contained in:
dswbx
2025-10-24 15:12:47 +02:00
parent 869031bbfa
commit f3c6cd7620

View File

@@ -114,7 +114,7 @@ export class AdminController extends Controller {
}),
permission(SystemPermissions.schemaRead, {
onDenied: async (c) => {
addFlashMessage(c, "You not allowed to read the schema", "warning");
addFlashMessage(c, "You are not allowed to read the schema", "warning");
},
context: (c) => ({}),
}),