Fix missing page component imports (#1610)

Missed bug introduced in
https://github.com/webrecorder/browsertrix-cloud/pull/1608, adds back
imports and disables `import-x` rule.
This commit is contained in:
sua yoo 2024-03-18 20:55:35 -07:00 committed by GitHub
parent 91df222cdf
commit b43f550ff3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -101,7 +101,7 @@ module.exports = {
/* end recommended rules */ /* end recommended rules */
/* start import rules */ /* start import rules */
"import-x/no-duplicates": ["error", { "prefer-inline": true }], // "import-x/no-duplicates": ["error", { "prefer-inline": true }],
"import-x/order": [ "import-x/order": [
"error", "error",
{ {

View File

@ -31,10 +31,13 @@ import "./workflows-list";
import "./workflows-new"; import "./workflows-new";
import "./archived-item-detail"; import "./archived-item-detail";
import "./archived-items"; import "./archived-items";
import "./archived-item-qa";
import "./collections-list"; import "./collections-list";
import "./collection-detail";
import "./browser-profiles-detail"; import "./browser-profiles-detail";
import "./browser-profiles-list"; import "./browser-profiles-list";
import "./browser-profiles-new"; import "./browser-profiles-new";
import "./settings";
import "./dashboard"; import "./dashboard";
const RESOURCE_NAMES = ["workflow", "collection", "browser-profile", "upload"]; const RESOURCE_NAMES = ["workflow", "collection", "browser-profile", "upload"];