MaxiPigna

Results 2 issues of MaxiPigna

Given this source code ``` builder.Services.AddHealthChecks() .AddAzureCosmosDB(optionsFactory: static (sp) => { CosmosDbOptions cosmosConfig = sp.GetRequiredService().Value; return new AzureCosmosDbHealthCheckOptions { DatabaseId = cosmosConfig.DatabaseName, ContainerIds = [Constants.ConversationContainerName] }; }, tags: ["Database"], timeout:...

bug
cosmosdb

Given the following code ``` const MarkdownPresenter: FC = ({ text }) => { const { theme } = useTheme(); const rehypePlugins = [rehypeSanitize, () => rehypeExternalLinks({ target: '_blank' })];...