From 0e5e94fe9f6b44fb4b3f50e389112ddb69ec570d Mon Sep 17 00:00:00 2001 From: Austin Condiff Date: Sun, 25 Sep 2022 17:21:18 -0500 Subject: [PATCH] Fixed bug with SectionDivider --- components/common/layout/SectionDivider.jsx | 2 +- components/common/layout/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/common/layout/SectionDivider.jsx b/components/common/layout/SectionDivider.jsx index fc7394e..dd27293 100644 --- a/components/common/layout/SectionDivider.jsx +++ b/components/common/layout/SectionDivider.jsx @@ -1,4 +1,4 @@ -import Section from "@/components/common/Section" +import Section from "./Section" import styled from 'styled-components'; const Divider = styled.hr` diff --git a/components/common/layout/index.js b/components/common/layout/index.js index c8faefa..6b02130 100644 --- a/components/common/layout/index.js +++ b/components/common/layout/index.js @@ -4,5 +4,5 @@ export { default as Grid } from './Grid'; export { default as GridItem } from './GridItem'; export { default as Row } from './Row'; export { default as Section } from './Section'; -export { default as SectionDivider } from './Column'; +export { default as SectionDivider } from './SectionDivider'; export { default as Stack } from './Stack';