Skip to content

Commit e659a22

Browse files
fix types and tests
Signed-off-by: Adhitya Mamallan <adhitya.mamallan@uber.com>
1 parent c9a590d commit e659a22

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/views/shared/workflows-list-columns-picker/__tests__/workflows-list-columns-picker.test.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jest.mock('baseui/popover', () => ({
2626
}));
2727

2828
const MOCK_ALL_COLUMNS: ColumnDefinition[] = [
29-
{ id: 'col-1', name: 'Workflow ID', isDefault: true },
30-
{ id: 'col-2', name: 'Status', isDefault: true },
31-
{ id: 'col-3', name: 'Start Time', isDefault: false },
32-
{ id: 'col-4', name: 'End Time', isDefault: false },
29+
{ id: 'col-1', name: 'Workflow ID' },
30+
{ id: 'col-2', name: 'Status' },
31+
{ id: 'col-3', name: 'Start Time' },
32+
{ id: 'col-4', name: 'End Time' },
3333
];
3434

3535
describe(WorkflowsListColumnsPicker.name, () => {

src/views/shared/workflows-list-columns-picker/workflows-list-columns-picker.types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export type ColumnDefinition = {
22
id: string;
33
name: string;
4-
isDefault: boolean;
54
};
65

76
export type ColumnState = { id: string; checked: boolean };

0 commit comments

Comments
 (0)