Skip to content

Commit

Permalink
fix: remove unused console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
m-risto committed Nov 11, 2024
1 parent 7409ca2 commit e3cb838
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CommonModule } from '@angular/common';
import { Component, input } from '@angular/core';
import { TableContent } from '@blocknote/core';
import { PartialTableContent, TableContent } from '@blocknote/core';
import type { InlineContentSchema } from '@blocknote/core/src/schema/inlineContent/types';
import type { StyleSchema } from '@blocknote/core/src/schema/styles/types';
import { TableHandleOptions } from '../../../../../interfaces/table-handle-options.type';
Expand All @@ -27,7 +27,6 @@ export class BnaAddButtonComponent {
//TODO: when can this be?
return;
}
console.log(block.content);
const content: TableContent<InlineContentSchema, StyleSchema> = {
...block.content,
type: 'tableContent',
Expand Down Expand Up @@ -79,10 +78,8 @@ export class BnaAddButtonComponent {

private getProperties(orientation: 'row' | 'column') {
const editor = this.ngxBlockNoteService.editor();
//TODO: get the block
const options = this.options();
const block = options.tableHandles.block;
console.log(block);

const index =
orientation === 'row'
Expand Down

0 comments on commit e3cb838

Please sign in to comment.