Skip to content

Commit

Permalink
Make assignee text consistent when small
Browse files Browse the repository at this point in the history
  • Loading branch information
canac committed May 24, 2023
1 parent 48127a9 commit f303f52
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions src/components/Task/TaskRow/TaskRow.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
import React from 'react';
import {
Box,
Button,
Checkbox,
Hidden,
Tooltip,
Typography,
} from '@mui/material';
import { Box, Checkbox, Hidden, Tooltip, Typography } from '@mui/material';
import { styled } from '@mui/material/styles';
import { useTranslation } from 'react-i18next';
import { DateTime } from 'luxon';
Expand Down Expand Up @@ -228,9 +221,7 @@ export const TaskRow: React.FC<TaskRowProps> = ({
))}
</Box>
<Hidden smUp>
<Button>
<ContactText>{assigneeName}</ContactText>
</Button>
<ContactText>{assigneeName}</ContactText>
</Hidden>
</Box>
</Box>
Expand Down

0 comments on commit f303f52

Please sign in to comment.