Skip to content

Commit

Permalink
remove temporary test to slow down Flaws dashboard (mdn#2947)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe authored Feb 16, 2021
1 parent a1d49fc commit 47f4b7f
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions client/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,7 @@ import { PageNotFound } from "./page-not-found";
import { Banner } from "./banners";
import { useDebugGA } from "./ga-context";

const AllFlaws = React.lazy(() =>
import("./flaws").then((m) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve(m as any);
}, 3000);
});
})
);
const AllFlaws = React.lazy(() => import("./flaws"));
const DocumentEdit = React.lazy(() => import("./document/forms/edit"));
const DocumentCreate = React.lazy(() => import("./document/forms/create"));
const DocumentManage = React.lazy(() => import("./document/forms/manage"));
Expand Down

0 comments on commit 47f4b7f

Please sign in to comment.