Skip to content

Commit f818783

Browse files
committed
pointer cursor
1 parent 81ad03f commit f818783

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

src/frontend/src/pages/AdminToolsPage/AdminToolsSlackIds.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const AdminToolsSlackIdsView: React.FC<AdminToolsWorkspaceIdViewProps> = ({ orga
5959
setClickedTeam(team);
6060
setShowEditModal(true);
6161
}}
62-
sx={{ color: 'inherit', textDecoration: 'none' }}
62+
sx={{ cursor: 'pointer', color: 'inherit', textDecoration: 'none' }}
6363
>
6464
<TableCell sx={{ borderBottom: index === allTeams.length - 1 ? 'none' : 'default' }}>{team.teamName}</TableCell>
6565
<TableCell sx={{ borderBottom: index === allTeams.length - 1 ? 'none' : 'default' }}>{team.slackId}</TableCell>

src/frontend/src/pages/AdminToolsPage/TeamConfig/EditTeamSlackIdFormModal.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,7 @@ import { FormControl, FormLabel, FormHelperText, Tooltip, Typography, Link } fro
44
import ReactHookTextField from '../../../components/ReactHookTextField';
55
import * as yup from 'yup';
66
import { yupResolver } from '@hookform/resolvers/yup';
7-
import { Box } from '@mui/system';
8-
import HelpIcon from '@mui/icons-material/Help';
9-
import { TeamPreview, TeamType } from 'shared';
10-
import { CreateTeamTypePayload } from '../../../hooks/team-types.hooks';
11-
import useFormPersist from 'react-hook-form-persist';
12-
import { FormStorageKey } from '../../../utils/form';
7+
import { TeamPreview } from 'shared';
138
import { useEffect } from 'react';
149
import { useEditTeamSlackId } from '../../../hooks/teams.hooks';
1510
import LoadingIndicator from '../../../components/LoadingIndicator';

0 commit comments

Comments
 (0)