Skip to content

Commit

Permalink
Fix linter and yarn.lock not being synced
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesBochet committed Jul 19, 2024
1 parent 187b6f9 commit 41211dc
Show file tree
Hide file tree
Showing 2 changed files with 4,560 additions and 4,560 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { styled } from '@linaria/react';
import { useContext } from 'react';
import { ThemeContext } from 'twenty-ui';

const StyledTh = styled.th<{ backgroundColor: string;}>`
const StyledTh = styled.th<{ backgroundColor: string }>`
background: ${({ backgroundColor }) => backgroundColor};
border-bottom: none;
border-top: none;
background: ${({ backgroundColor }) => backgroundColor};
`;

export const RecordTableHeaderDragDropColumn = () => {
const { theme } = useContext(ThemeContext);
const { theme } = useContext(ThemeContext);

return <StyledTh backgroundColor={theme.background.primary}></StyledTh>;
};
Loading

0 comments on commit 41211dc

Please sign in to comment.