Skip to content

Commit

Permalink
Move footer content block to correct folder
Browse files Browse the repository at this point in the history
It should be in `src/layout/footer/blocks`, not `src/documents/pages/blocks`.
  • Loading branch information
johnnyomair committed Dec 12, 2024
1 parent 0c7fbc6 commit 261f667
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { BlockPreviewProvider, IFrameBridgeProvider, useBlockPreviewFetch, useIFrameBridge } from "@comet/cms-site";
import { FooterContentBlockData } from "@src/blocks.generated";
import { FooterContentBlock } from "@src/documents/pages/blocks/FooterContentBlock";
import { FooterContentBlock } from "@src/layout/footer/blocks/FooterContentBlock";
import { graphQLApiUrl } from "@src/util/graphQLClient";
import { recursivelyLoadBlockData } from "@src/util/recursivelyLoadBlockData";
import { FunctionComponent, useEffect, useState } from "react";
Expand Down
2 changes: 1 addition & 1 deletion site/src/layout/footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client";
import { FooterContentBlock } from "@src/documents/pages/blocks/FooterContentBlock";
import { FooterContentBlock } from "@src/layout/footer/blocks/FooterContentBlock";
import { GQLFooterFragment } from "@src/layout/footer/Footer.fragment.generated";

interface Props {
Expand Down

0 comments on commit 261f667

Please sign in to comment.