diff --git a/lib/components/molecules/Grid/index.tsx b/lib/components/molecules/Grid/index.tsx index f5263d0..1c52290 100644 --- a/lib/components/molecules/Grid/index.tsx +++ b/lib/components/molecules/Grid/index.tsx @@ -4,7 +4,7 @@ import { Section as SectionData } from "../../../types/section"; import { Tile, TileHeight, TileType } from "../../../types/tile"; import { useResponsiveScale } from "../../../utils/responsiveScaling"; import { TileContainer } from "../../atoms"; -import SectionHeader from "../SectionHeader"; +import { SectionHeader } from "../../molecules"; type GridProps = { section: SectionData; diff --git a/lib/components/organisms/RewardCategoryTile/index.tsx b/lib/components/organisms/RewardCategoryTile/index.tsx index 2a8be83..b92a360 100644 --- a/lib/components/organisms/RewardCategoryTile/index.tsx +++ b/lib/components/organisms/RewardCategoryTile/index.tsx @@ -2,6 +2,7 @@ import React from "react"; import { Image, StyleSheet, Text, View } from "react-native"; import { useTheme } from "../../../context/ThemeContext"; import { RewardCategoryTileConfig } from "../../../types/tile"; +import { Tile } from "../../atoms"; type RewardCategoryTileProps = { configuration: RewardCategoryTileConfig; diff --git a/lib/components/organisms/Section/Section.stories.tsx b/lib/components/organisms/Section/Section.stories.tsx index 9fdcbaf..38fb088 100644 --- a/lib/components/organisms/Section/Section.stories.tsx +++ b/lib/components/organisms/Section/Section.stories.tsx @@ -1,7 +1,7 @@ import { Meta, StoryFn } from "@storybook/react"; -import { Section } from "lucide-react"; import React from "react"; import { View } from "react-native"; +import { Section } from "../../../components/organisms"; import { SectionType } from "../../../types/section"; import { BannerTileConfig,