in src/theme/MDXComponents/Code.tsx [18:22]
export default function MDXCode(props: Props): JSX.Element { return shouldBeInline(props) ? ( <CodeInline {...props} /> ) : ( <CodeBlock {...(props as ComponentProps<typeof CodeBlock>)} />