Skip to content

Commit 11404af

Browse files
chore(site): update files to use a more standard naming (#9605)
1 parent 554ddb1 commit 11404af

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

site/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@
4646

4747
<body>
4848
<div id="root"></div>
49-
<script type="module" src="./src/Main.tsx"></script>
49+
<script type="module" src="./src/index.tsx"></script>
5050
</body>
File renamed without changes.

site/src/components/Dashboard/Navbar/Navbar.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { render, screen, waitFor } from "@testing-library/react";
2-
import { App } from "app";
2+
import { App } from "App";
33
import { Language } from "./NavbarView";
44
import { rest } from "msw";
55
import {

site/src/Main.tsx renamed to site/src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { inspect } from "@xstate/inspect";
22
import { createRoot } from "react-dom/client";
33
import { Interpreter } from "xstate";
4-
import { App } from "./app";
4+
import { App } from "./App";
55
import "./i18n";
66

77
// if this is a development build and the developer wants to inspect

site/src/testHelpers/renderHelpers.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
screen,
44
waitForElementToBeRemoved,
55
} from "@testing-library/react";
6-
import { AppProviders } from "app";
6+
import { AppProviders } from "App";
77
import { DashboardLayout } from "components/Dashboard/DashboardLayout";
88
import { i18n } from "i18n";
99
import { TemplateSettingsLayout } from "pages/TemplateSettingsPage/TemplateSettingsLayout";

0 commit comments

Comments
 (0)