Skip to content

Commit

Permalink
Fix incorrectly imported imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Graeme Houston committed Aug 27, 2024
1 parent ea1e2e9 commit 9a8a5a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/components/molecules/Grid/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions lib/components/organisms/RewardCategoryTile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/components/organisms/Section/Section.stories.tsx
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 9a8a5a3

Please sign in to comment.