From cf9286e47fb3b29c0e886e0209afc52c40dbb71b Mon Sep 17 00:00:00 2001 From: Zishan Ahmad Date: Sun, 12 May 2024 18:45:18 +0530 Subject: [PATCH] fixed filename --- packages/react/src/components/uiKit/blocks/ContextBlock.js | 2 +- .../uiKit/blocks/{ContextBlock.Item.js => ContextBlockItem.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/react/src/components/uiKit/blocks/{ContextBlock.Item.js => ContextBlockItem.js} (100%) diff --git a/packages/react/src/components/uiKit/blocks/ContextBlock.js b/packages/react/src/components/uiKit/blocks/ContextBlock.js index d891693ee..ac67f5cbc 100644 --- a/packages/react/src/components/uiKit/blocks/ContextBlock.js +++ b/packages/react/src/components/uiKit/blocks/ContextBlock.js @@ -3,7 +3,7 @@ import React, { memo, useMemo } from 'react'; import useComponentOverrides from '../../../theme/useComponentOverrides'; import { Box } from '../../Box'; -import Item from './ContextBlock.Item'; +import Item from './ContextBlockItem'; const ContextBlock = ({ className, block, surfaceRenderer }) => { const { classNames, styleOverrides } = useComponentOverrides('ContextBlock'); diff --git a/packages/react/src/components/uiKit/blocks/ContextBlock.Item.js b/packages/react/src/components/uiKit/blocks/ContextBlockItem.js similarity index 100% rename from packages/react/src/components/uiKit/blocks/ContextBlock.Item.js rename to packages/react/src/components/uiKit/blocks/ContextBlockItem.js