Skip to content

Commit

Permalink
fix: 🐛 fix import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
themashcodee committed Jun 15, 2024
1 parent 72bd225 commit 23fb47e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/blocks/rich_text/rich_text.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RichTextBlockElement } from "../../../original_types";
import { RichTextBlockElement } from "../../../types";
import { RichTextBlock } from "../../../types";
import { RichTextListWrapper } from "./rich_text_list_wrapper";
import { RichTextSectionElement } from "./rich_text_section";
Expand Down
2 changes: 1 addition & 1 deletion src/components/blocks/rich_text/rich_text_list_wrapper.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { ComponentPropsWithoutRef } from "react";
import { RichTextList } from "../../../original_types";
import { RichTextList } from "../../../types";

type Props = ComponentPropsWithoutRef<"ul"> & {
element: RichTextList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RichTextSectionBroadcast as RichTextSectionBroadcastType } from "../../../original_types";
import { RichTextSectionBroadcast as RichTextSectionBroadcastType } from "../../../types";
import { useGlobalData } from "../../../store";

type Props = RichTextSectionBroadcastType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RichTextSectionChannel as RichTextSectionChannelType } from "../../../original_types";
import { RichTextSectionChannel as RichTextSectionChannelType } from "../../../types";
import { useGlobalData } from "../../../store";

type Props = RichTextSectionChannelType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RichTextSectionEmoji as RichTextSectionEmojiType } from "../../../original_types";
import { RichTextSectionEmoji as RichTextSectionEmojiType } from "../../../types";
import { useGlobalData } from "../../../store";
import { parseEmojis } from "../../../utils";

Expand Down
2 changes: 1 addition & 1 deletion src/components/blocks/rich_text/rich_text_section_user.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RichTextSectionUser as RichTextSectionUserType } from "../../../original_types";
import { RichTextSectionUser as RichTextSectionUserType } from "../../../types";
import { useGlobalData } from "../../../store";

type Props = RichTextSectionUserType;
Expand Down
2 changes: 1 addition & 1 deletion src/types/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
StaticSelectElement,
UsersSelectElement,
} from ".";
import { RichTextBlockElement } from "../original_types";
import { RichTextBlockElement } from "../types";

export type Block =
| ActionsBlock
Expand Down

0 comments on commit 23fb47e

Please sign in to comment.