Fix console errors (#10859)
Fixes https://github.com/twentyhq/core-team-issues/issues/276 ## Before   ## After 
This commit is contained in:
@ -83,7 +83,7 @@ const StyledClickableZone = styled.div`
|
||||
justify-content: flex-end;
|
||||
`;
|
||||
|
||||
const MotionIconChevronDown = motion(IconChevronDown);
|
||||
const MotionIconChevronDown = motion.create(IconChevronDown);
|
||||
|
||||
type RecordDetailRelationRecordsListItemProps = {
|
||||
isExpanded: boolean;
|
||||
|
||||
@ -28,7 +28,7 @@ const StyledTable = styled.table`
|
||||
table-layout: fixed;
|
||||
width: 100%;
|
||||
|
||||
.footer-sticky tr:nth-last-child(2) td {
|
||||
.footer-sticky tr:nth-last-of-type(2) td {
|
||||
border-bottom-color: ${({ theme }) => theme.background.transparent};
|
||||
}
|
||||
`;
|
||||
|
||||
@ -15,7 +15,7 @@ type RecordTableDraggableTrProps = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
const StyledAbsoluteInViewContainer = styled.div`
|
||||
const StyledAbsoluteInViewContainer = styled.td`
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
Reference in New Issue
Block a user