Skip to content

Commit

Permalink
feat: make reset button work, tabs of run panel
Browse files Browse the repository at this point in the history
  • Loading branch information
maryia-matskevich-deriv committed Jul 10, 2024
1 parent 70ab6e9 commit 93b29b3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/run-panel/run-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ import React from 'react';
import classNames from 'classnames';
import { observer } from 'mobx-react-lite';

import { Button, Modal, Tabs, Text } from '@deriv-com/ui';
import { Button, Modal, Text } from '@deriv-com/ui';

import Journal from '@/components/journal';
import SelfExclusion from '@/components/self-exclusion';
import Drawer from '@/components/shared_ui/drawer';
import Money from '@/components/shared_ui/money';
import Tabs from '@/components/shared_ui/tabs';
import Summary from '@/components/summary';
import TradeAnimation from '@/components/trade-animation';
import Transactions from '@/components/transactions';
Expand Down Expand Up @@ -154,8 +155,10 @@ const DrawerFooter = ({ is_clear_stat_disabled, onClearStatClick }: TDrawerFoote
className='run-panel__footer-button'
disabled={is_clear_stat_disabled}
onClick={onClearStatClick}
has_effect
variant='outlined'
color='black'
size='sm'
textSize='sm'
>
<span>{localize('Reset')}</span>
</Button>
Expand Down

0 comments on commit 93b29b3

Please sign in to comment.