Skip to content

Commit

Permalink
fix(baseline): hide on /MDN/ pages (#11358)
Browse files Browse the repository at this point in the history
  • Loading branch information
caugner authored Jul 12, 2024
1 parent 99d2290 commit af33c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ export async function buildDocument(
}

function addBaseline(doc: Partial<Doc>) {
if (doc.browserCompat) {
if (doc.browserCompat && !doc.mdn_url?.includes("/docs/MDN/")) {
const filteredBrowserCompat = doc.browserCompat.filter(
(query) =>
// temporary blocklist while we wait for per-key baseline statuses
Expand Down

0 comments on commit af33c55

Please sign in to comment.