@codecademy/gamut

72.2.172.2.2-alpha.ae087f.0
dist/DataList/Tables/Rows/TableRow.js
~dist/DataList/Tables/Rows/TableRow.jsModified
+2−1
Index: package/dist/DataList/Tables/Rows/TableRow.js
===================================================================
--- package/dist/DataList/Tables/Rows/TableRow.js
+++ package/dist/DataList/Tables/Rows/TableRow.js
@@ -2,8 +2,9 @@
 import { Text } from '../../..';
 import { ListCol, ListRow } from '../../../List';
 import { useListContext } from '../../../List/ListProvider';
 import { Shimmer } from '../../../Loading/Shimmer';
+import { DEFAULT_COLUMN_SIZE } from '../../constants';
 import { ExpandControl, SelectControl } from '../../Controls';
 import { useControlContext } from '../../hooks/useListControls';
 import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
 export const TableRow = ({
@@ -89,9 +90,9 @@
       };
       const newKey = prefixId(`${id}-col-${String(key)}`);
       const colProps = {
         ...listColProps,
-        size,
+        size: size ?? DEFAULT_COLUMN_SIZE,
         justify,
         fill,
         type
       };