Skip to content

Commit

Permalink
Fix filename case errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik-Jay committed Jun 22, 2024
1 parent fa407e6 commit d7d367a
Show file tree
Hide file tree
Showing 106 changed files with 196 additions and 1,455 deletions.
2 changes: 1 addition & 1 deletion src/App.test.tsx → src/app.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react"
import { screen } from "@testing-library/react"
import { render } from "./test-utils"
import App from "./App"
import App from "./app"

test("renders learn react link", () => {
render(<App />)
Expand Down
8 changes: 4 additions & 4 deletions src/App.tsx → src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import {
Text,
VStack,
} from "@chakra-ui/react";
import { AuthProvider } from "./services/Firebase/AuthProvider";
import { AuthProvider } from "./services/firebase/authProvider";
import { useGetWindowDimensionsHook } from "./utilities/useGetDdimensionsHook";
import logo from "./assets/images/logo/Mendisphere Logo colour.png";
import mendisphereTheme from "./theme";
import Routing from "./routing";
import { Paths } from "./routing/Paths";
import Header from "./components/Header";
import Footer from "./components/Footer";
import { Paths } from "./routing/paths";
import Header from "./components/header";
import Footer from "./components/footer";

function App() {
const { width } = useGetWindowDimensionsHook();
Expand Down
1 change: 0 additions & 1 deletion src/components/Breadcrumbs/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/components/Container/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/components/Footer/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/components/Header/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/components/NavigationButton/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/components/ScrollAnimation/index.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import {
Text,
} from "@chakra-ui/react";
import { HomeIcon } from "@primer/octicons-react";
import { Organisation } from "../../data/Model/Organisation";
import { Paths } from "../../routing/Paths";
import { Organisation } from "../../data/model/organisation";
import { Paths } from "../../routing/paths";

const currentPageStyle = {
color: "#3959FF",
Expand Down
1 change: 1 addition & 0 deletions src/components/breadcrumbs/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./breadcrumbs";
1 change: 1 addition & 0 deletions src/components/container/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./container";
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import {
Spacer,
} from "@chakra-ui/react";
import "../../pages/style.scss";
import { SocialType } from "../../data/Enums/social-type.enum";
import { SocialType } from "../../data/enums/social-type.enum";
import { GetIconForSocials } from "../../utilities/iconMappings/iconMapping";
import { Social } from "../../data/Model/OrganisationSummary";
import { Social } from "../../data/model/organisationSummary";

const Footer: React.FC = () => {
const socials: Social[] = [
Expand Down
1 change: 1 addition & 0 deletions src/components/footer/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./footer";
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import {
Spacer,
} from "@chakra-ui/react";
import { Link as ReactRouterLink } from "react-router-dom";
import NavigationButton from "../NavigationButton";
import { Paths } from "../../routing/Paths";
import NavigationButton from "../navigationButton";
import { Paths } from "../../routing/paths";
import "../../pages/style.scss";

import logo from "../../assets/images/logo/Mendisphere Logo colour.png";
Expand Down
1 change: 1 addition & 0 deletions src/components/header/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./header";
1 change: 1 addition & 0 deletions src/components/navigationButton/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./navigationButton";
1 change: 1 addition & 0 deletions src/components/scrollAnimation/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { Animate } from "./scrollAnimation";
6 changes: 0 additions & 6 deletions src/data/Auth/AuthContext.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions src/data/Auth/LoginCredentials.ts

This file was deleted.

11 changes: 0 additions & 11 deletions src/data/Auth/UserContext.ts

This file was deleted.

25 changes: 0 additions & 25 deletions src/data/Enums/captial-goal.enum.ts

This file was deleted.

7 changes: 0 additions & 7 deletions src/data/Enums/social-type.enum.ts

This file was deleted.

25 changes: 0 additions & 25 deletions src/data/Enums/specialisation.enum.ts

This file was deleted.

5 changes: 0 additions & 5 deletions src/data/Enums/user-role.enum.ts

This file was deleted.

Loading

0 comments on commit d7d367a

Please sign in to comment.