Skip to content

Commit

Permalink
fix: Unstyled content visibility (#2070)
Browse files Browse the repository at this point in the history
Fixes flash of unstyled content due to dynamic imports.
  • Loading branch information
SuaYoo committed Sep 10, 2024
1 parent c01e3dd commit 8ccd36b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontend/src/components/ui/index.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import "./alert";
import "./badge";
import "./button";
import "./card";
import "./data-table";
import "./desc-list";
import "./dialog";
import "./navigation";
import "./tab-group";
import "./tab-list";

import("./button");
import("./card");
import("./code");
import("./combobox");
import("./config-details");
import("./copy-button");
import("./copy-field");
import("./data-table");
import("./desc-list");
import("./details");
import("./dialog");
import("./file-list");
import("./inline-input");
import("./input");
Expand All @@ -30,8 +32,6 @@ import("./relative-duration");
import("./search-combobox");
import("./section-heading");
import("./select-crawler");
import("./tab-group");
import("./tab-list");
import("./table");
import("./tag-input");
import("./tag");
Expand Down

0 comments on commit 8ccd36b

Please sign in to comment.