Openstatus www.openstatus.dev

chore: blacklist data-table (#997)

* chore: blacklist data-table

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Maximilian Kaske
autofix-ci[bot]
and committed by
GitHub
2cd8f2b6 478ee669

+10 -3
+10 -3
packages/api/src/router/page.ts
··· 339 339 .query(async (opts) => { 340 340 // had filter on some words we want to keep for us 341 341 if ( 342 - ["api", "app", "www", "docs", "checker", "time", "help"].includes( 343 - opts.input.slug, 344 - ) 342 + [ 343 + "api", 344 + "app", 345 + "www", 346 + "docs", 347 + "checker", 348 + "time", 349 + "help", 350 + "data-table", 351 + ].includes(opts.input.slug) 345 352 ) { 346 353 return false; 347 354 }