Skip to content

Commit

Permalink
fix: Remove dead prop reference
Browse files Browse the repository at this point in the history
  • Loading branch information
jherdman committed May 9, 2024
1 parent af9d3a4 commit 75dff4c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Table/TableBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";
import styled from "styled-components";
import { Box } from "../Box";
import { DefaultNDSThemeType } from "../theme.type";
import { rowsPropType, columnsPropType, rowPropType } from "./Table.types";
import { columnsPropType, rowPropType } from "./Table.types";
import TableCell from "./TableCell";

const StyledMessageContainer = styled(Box)(({ theme }) => ({
Expand Down
1 change: 0 additions & 1 deletion src/Table/TableCell.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from "react";
import styled, { CSSObject } from "styled-components";
import { columnPropType, rowPropType } from "./Table.types";
import { DefaultNDSThemeType } from "../theme.type";

type StyledTableCellProps = {
Expand Down

0 comments on commit 75dff4c

Please sign in to comment.