diff --git a/src/v2/Apps/Show/components/ShowAbout.tsx b/src/v2/Apps/Show/Components/ShowAbout.tsx similarity index 100% rename from src/v2/Apps/Show/components/ShowAbout.tsx rename to src/v2/Apps/Show/Components/ShowAbout.tsx diff --git a/src/v2/Apps/Show/components/ShowArtworks.tsx b/src/v2/Apps/Show/Components/ShowArtworks.tsx similarity index 100% rename from src/v2/Apps/Show/components/ShowArtworks.tsx rename to src/v2/Apps/Show/Components/ShowArtworks.tsx diff --git a/src/v2/Apps/Show/components/ShowContextualLink.tsx b/src/v2/Apps/Show/Components/ShowContextualLink.tsx similarity index 100% rename from src/v2/Apps/Show/components/ShowContextualLink.tsx rename to src/v2/Apps/Show/Components/ShowContextualLink.tsx diff --git a/src/v2/Apps/Show/components/ShowHeader.tsx b/src/v2/Apps/Show/Components/ShowHeader.tsx similarity index 100% rename from src/v2/Apps/Show/components/ShowHeader.tsx rename to src/v2/Apps/Show/Components/ShowHeader.tsx diff --git a/src/v2/Apps/Show/components/ShowInstallShots.tsx b/src/v2/Apps/Show/Components/ShowInstallShots.tsx similarity index 100% rename from src/v2/Apps/Show/components/ShowInstallShots.tsx rename to src/v2/Apps/Show/Components/ShowInstallShots.tsx diff --git a/src/v2/Apps/Show/components/ShowMeta.tsx b/src/v2/Apps/Show/Components/ShowMeta.tsx similarity index 100% rename from src/v2/Apps/Show/components/ShowMeta.tsx rename to src/v2/Apps/Show/Components/ShowMeta.tsx diff --git a/src/v2/Apps/Show/components/ShowViewingRoom.tsx b/src/v2/Apps/Show/Components/ShowViewingRoom.tsx similarity index 100% rename from src/v2/Apps/Show/components/ShowViewingRoom.tsx rename to src/v2/Apps/Show/Components/ShowViewingRoom.tsx diff --git a/src/v2/Apps/Show/ShowApp.tsx b/src/v2/Apps/Show/ShowApp.tsx index 15decada6d8..ff6e329c65f 100644 --- a/src/v2/Apps/Show/ShowApp.tsx +++ b/src/v2/Apps/Show/ShowApp.tsx @@ -6,14 +6,14 @@ import { HorizontalPadding } from "v2/Apps/Components/HorizontalPadding" import { Footer } from "v2/Components/Footer" import { ErrorPage } from "v2/Components/ErrorPage" import { Box, Column, GridColumns, Separator } from "@artsy/palette" -import { ShowMetaFragmentContainer as ShowMeta } from "v2/Apps/Show/components/ShowMeta" -import { ShowHeaderFragmentContainer as ShowHeader } from "./components/ShowHeader" -import { ShowAboutFragmentContainer as ShowAbout } from "./components/ShowAbout" -import { ShowInstallShotsFragmentContainer as ShowInstallShots } from "./components/ShowInstallShots" -import { ShowContextualLinkFragmentContainer as ShowContextualLink } from "./components/ShowContextualLink" -import { ShowViewingRoom } from "./components/ShowViewingRoom" +import { ShowMetaFragmentContainer as ShowMeta } from "v2/Apps/Show/Components/ShowMeta" +import { ShowHeaderFragmentContainer as ShowHeader } from "./Components/ShowHeader" +import { ShowAboutFragmentContainer as ShowAbout } from "./Components/ShowAbout" +import { ShowInstallShotsFragmentContainer as ShowInstallShots } from "./Components/ShowInstallShots" +import { ShowContextualLinkFragmentContainer as ShowContextualLink } from "./Components/ShowContextualLink" +import { ShowViewingRoom } from "./Components/ShowViewingRoom" import { ShowApp_show } from "v2/__generated__/ShowApp_show.graphql" -import { ShowArtworksRefetchContainer as ShowArtworks } from "./components/ShowArtworks" +import { ShowArtworksRefetchContainer as ShowArtworks } from "./Components/ShowArtworks" interface ShowAppProps { show: ShowApp_show diff --git a/src/v2/Apps/Show/__tests__/ShowArtworks.jest.tsx b/src/v2/Apps/Show/__tests__/ShowArtworks.jest.tsx index f545f8d7456..6e73fe980c6 100644 --- a/src/v2/Apps/Show/__tests__/ShowArtworks.jest.tsx +++ b/src/v2/Apps/Show/__tests__/ShowArtworks.jest.tsx @@ -1,7 +1,7 @@ import { MockBoot } from "v2/DevTools" import { Breakpoint } from "@artsy/palette" import React from "react" -import { ShowArtworksRefetchContainer } from "../components/ShowArtworks" +import { ShowArtworksRefetchContainer } from "../Components/ShowArtworks" import { QueryRenderer, graphql } from "react-relay" import { ShowArtworks_Query } from "v2/__generated__/ShowArtworks_Query.graphql" import { MockPayloadGenerator, createMockEnvironment } from "relay-test-utils" diff --git a/src/v2/Apps/Show/__tests__/ShowContextualLink.jest.tsx b/src/v2/Apps/Show/__tests__/ShowContextualLink.jest.tsx index 056b1f3529f..4c5e5e8bbed 100644 --- a/src/v2/Apps/Show/__tests__/ShowContextualLink.jest.tsx +++ b/src/v2/Apps/Show/__tests__/ShowContextualLink.jest.tsx @@ -1,6 +1,6 @@ import React from "react" import { mount } from "enzyme" -import { ContextualLink } from "../components/ShowContextualLink" +import { ContextualLink } from "../Components/ShowContextualLink" import { Link } from "@artsy/palette" const SHOW_FIXTURE = { diff --git a/src/v2/Apps/Show/__tests__/ShowInstallShots.jest.tsx b/src/v2/Apps/Show/__tests__/ShowInstallShots.jest.tsx index 916541548ae..292af830267 100644 --- a/src/v2/Apps/Show/__tests__/ShowInstallShots.jest.tsx +++ b/src/v2/Apps/Show/__tests__/ShowInstallShots.jest.tsx @@ -1,6 +1,6 @@ import React from "react" import { mount } from "enzyme" -import { ShowInstallShots } from "../components/ShowInstallShots" +import { ShowInstallShots } from "../Components/ShowInstallShots" jest.mock("v2/Components/Carousel", () => ({ Carousel: ({ children }) => children,