From 682fadf273f1d09eabb5b5823f66f669e838dc85 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Wed, 10 Apr 2024 17:35:44 +0300 Subject: [PATCH] fix(left-sidebar-icon-button-story): remove old props --- .../LeftSidebarIconButton.stories.tsx | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx b/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx index 71818d1f..9df5d747 100644 --- a/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx +++ b/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx @@ -1,8 +1,8 @@ import type { Meta, StoryObj } from '@storybook/react' import { DashboardIcon } from '@status-im/icons' +import { withRouter } from 'storybook-addon-react-router-v6' import LeftSidebarIconButton from './LeftSidebarIconButton' -import { withRouter } from 'storybook-addon-react-router-v6' const meta = { title: 'General/LeftSidebarIconButton', @@ -21,9 +21,7 @@ export const Default: Story = { args: { iconEl: , isDotOn: false, - isSelected: false, isDisabled: false, - id: 'dashboard', path: 'dashboard', }, } @@ -32,20 +30,7 @@ export const DotOn: Story = { args: { iconEl: , isDotOn: true, - isSelected: false, isDisabled: false, - id: 'dashboard', - path: 'dashboard', - }, -} - -export const Selected: Story = { - args: { - iconEl: , - isDotOn: false, - isSelected: true, - isDisabled: false, - id: 'dashboard', path: 'dashboard', }, }