From ddb6385e1e89e9283dddf2144be0aeda737778cf Mon Sep 17 00:00:00 2001 From: adriangohjw Date: Sat, 16 Nov 2024 17:39:54 +0800 Subject: [PATCH] fix - remove additional story --- .../Page/EditPage/EditContentPage.stories.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/apps/studio/src/stories/Page/EditPage/EditContentPage.stories.tsx b/apps/studio/src/stories/Page/EditPage/EditContentPage.stories.tsx index b04b4e152..3167fc7c2 100644 --- a/apps/studio/src/stories/Page/EditPage/EditContentPage.stories.tsx +++ b/apps/studio/src/stories/Page/EditPage/EditContentPage.stories.tsx @@ -123,15 +123,3 @@ export const LinkModal: Story = { await userEvent.click(canvas.getByRole("button", { name: /link/i })) }, } - -export const AddTextBlock: Story = { - play: async (context) => { - const { canvasElement } = context - const canvas = within(canvasElement) - await AddBlock.play?.(context) - - await userEvent.click( - canvas.getByRole("button", { name: /Add a block of text/i }), - ) - }, -}