plugin-subcommands "No subcommand was matched"

I'm configuring my subcommand with:
@ApplyOptions<Subcommand.Options>({
    name: "config",
    subcommands: [
        {
            ...
        },
        {
            name: "logs",
            entries: [
                { name: "on", chatInputRun: "chatInputLogsOn" },
                { name: "off", chatInputRun: "chatInputLogsOff" },
            ],
        },
    ],
})


No errors occur, but
/config logs on
(which yes, i have registered) spits out "UserError: No subcommand was matched with the provided command."
Solution
The solution:

 {
     name: "logs",
+    type: "group",
     entries: [
Was this page helpful?