Skip to content

Commit

Permalink
feat: remove unrelated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhdaware committed Sep 6, 2024
1 parent 77576da commit 3c8b5c1
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import StoryPageWrapper from '~utils/storybook/StoryPageWrapper';
import { Box } from '~components/Box';
import { Button } from '~components/Button';
import { Amount } from '~components/Amount';
import { Code, Text } from '~components/Typography';
import { Code } from '~components/Typography';
import { Badge } from '~components/Badge';
import { getStyledPropsArgTypes } from '~components/Box/BaseBox/storybookArgTypes';
import { useTheme } from '~components/BladeProvider';
Expand Down Expand Up @@ -104,8 +104,7 @@ const TableTemplate: StoryFn<typeof TableComponent> = ({ ...args }) => {
minHeight="400px"
>
<TableComponent
height="200px"
showBorderedCells={false}
height="400px"
onSelectionChange={({ values }) => console.log('Selected Rows:', values)}
onSortChange={({ sortKey, isSortReversed }) =>
console.log('Sort Key:', sortKey, 'Sort Reversed:', isSortReversed)
Expand Down Expand Up @@ -158,7 +157,6 @@ const TableTemplate: StoryFn<typeof TableComponent> = ({ ...args }) => {
<TableRow key={index} item={tableItem}>
<TableCell>
<Code size="medium">{tableItem.paymentId}</Code>
<Text color="surface.text.gray.disabled">Sadasd</Text>
</TableCell>
<TableCell>
<Amount value={tableItem.amount} />
Expand Down

0 comments on commit 3c8b5c1

Please sign in to comment.