diff --git a/apps/dotcom/client/styles/globals.css b/apps/dotcom/client/styles/globals.css index 18fa273f8357..388c709ff2ac 100644 --- a/apps/dotcom/client/styles/globals.css +++ b/apps/dotcom/client/styles/globals.css @@ -29,6 +29,7 @@ html[data-theme='light'] #root { html:not([data-theme='light']) body, html:not([data-theme='light']) #root { background-color: hsl(240, 5%, 6.5%); + color: hsl(210, 17%, 98%); color-scheme: dark; } } @@ -37,7 +38,6 @@ html[data-theme='light'] #root { html:not([data-theme='dark']) body, html:not([data-theme='dark']) #root { background-color: hsl(210, 20%, 98%); - color: hsl(210, 17%, 98%); color-scheme: light; } } diff --git a/internal/scripts/lib/discord.ts b/internal/scripts/lib/discord.ts index 8e64e257938d..6f29fd8fa3fa 100644 --- a/internal/scripts/lib/discord.ts +++ b/internal/scripts/lib/discord.ts @@ -13,7 +13,7 @@ function sanitizeVariables(errorOutput: string): string { // Sanitize connection strings (postgres://, redis://, etc.) sanitized = sanitized.replace( - /\b(postgres|postgresql|mysql|redis|mongodb|amqp|https?):\/\/[^\s"']+/gi, + /\b(postgres|postgresql|mysql|redis|mongodb|amqp):\/\/[^\s"']+/gi, '$1://`***`' )