Skip to content

Commit 2b7d341

Browse files
committed
wip
1 parent 4199d16 commit 2b7d341

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/app-aco/src/components/Table/createTableData.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ import type { FolderTableRow, RecordTableRow } from "~/table.types.js";
44
export const createRecordsData = <T extends { id: string; $selectable?: boolean }>(
55
items: T[]
66
): RecordTableRow<T>[] => {
7-
console.log({
8-
items
9-
});
107
return items.map(item => ({
118
id: item.id,
129
$type: "RECORD",

packages/app-website-builder-workflows/src/presentation/page/PageList/PageListPresenterDecorator.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class PageListPresenterWithWorkflows implements PageListPresenter.Interface {
3232
public showFilters(show: boolean): void {
3333
this.decoratee.showFilters(show);
3434
}
35+
3536
private extendPage(page: PageDto): WithWorkflowState<PageDto> {
3637
return {
3738
...page,

0 commit comments

Comments
 (0)