Skip to content

Commit

Permalink
refactor: Remove not implemented run all functionality button.
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund committed Mar 18, 2024
1 parent 83489ee commit 50e8685
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions src/features/Compute/CaseGroup/CaseGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint-disable max-lines-per-function */
import { useMsal } from '@azure/msal-react';
import { Button, Icon, Tooltip } from '@equinor/eds-core-react';
import { add as ADD, play as PLAY } from '@equinor/eds-icons';
import { add as ADD } from '@equinor/eds-icons';
import { useMutation, useQuery } from '@tanstack/react-query';
import { useCallback, useEffect, useState } from 'react';
import { useParams } from 'react-router-dom';
Expand Down Expand Up @@ -335,19 +335,6 @@ export const CaseGroup = ({
</Button>
</Tooltip>
</Styled.ButtonGroup>
<Styled.ButtonGroup>
<Tooltip title="Functionality not implemented yet.">
<Button
variant="outlined"
// eslint-disable-next-line no-console
onClick={() => console.log('Running all')}
disabled
>
<Icon data={PLAY} size={18}></Icon>
Run all
</Button>
</Tooltip>
</Styled.ButtonGroup>
</Styled.ButtonDiv>
)}

Expand Down

0 comments on commit 50e8685

Please sign in to comment.