Skip to content

Commit

Permalink
fix(web): widget ui style missing on built (#1304)
Browse files Browse the repository at this point in the history
  • Loading branch information
airslice authored Dec 12, 2024
1 parent 8b1dad6 commit c1589da
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion web/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { AuthProvider } from "./services/auth";
import { Provider as GqlProvider } from "./services/gql";
import { AppRoutes } from "./services/routing";
import { Provider as ThemeProvider } from "./services/theme";
import "@reearth-widget-ui/styles/globals.css";

export default function App() {
return (
Expand Down
1 change: 1 addition & 0 deletions web/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import App from "./app";
import { initialize as initializeSentry } from "./sentry";
import loadConfig from "./services/config";
import wdyr from "./wdyr";
import "@reearth-widget-ui/styles/globals.css";

window.React = React;
window.ReactDOM = ReactDOM;
Expand Down
1 change: 1 addition & 0 deletions web/src/published.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { createRoot } from "react-dom/client";
import App from "./publishedapp";
import loadConfig from "./services/config";
import "./wdyr";
import "@reearth-widget-ui/styles/globals.css";

window.React = React;
window.ReactDOM = ReactDOM;
Expand Down
1 change: 0 additions & 1 deletion web/src/publishedapp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import PublishedPage from "@reearth/beta/pages/PublishedPage";

import { PublishedProvider as I18nProvider } from "./services/i18n";
import { PublishedAppProvider as ThemeProvider } from "./services/theme";
import "@reearth-widget-ui/styles/globals.css";

export default function App() {
return (
Expand Down

0 comments on commit c1589da

Please sign in to comment.