Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Sep 27, 2024
1 parent cc09659 commit 8483c15
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/svelte-table/src/createTable.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ export function createTable<
>(tableOptions: TableOptions<TFeatures, TData>) {
const _features = { ...coreFeatures, ...tableOptions._features }

console.log('features', _features)

let state = $state<Partial<TableState<TFeatures>>>(
getInitialTableState(_features, tableOptions.initialState),
)
Expand All @@ -36,12 +34,8 @@ export function createTable<
},
)

console.log('statefulOptions', statefulOptions)

const table = constructTable(statefulOptions)

console.log('table', table)

function updateOptions() {
table.setOptions((prev) => {
return mergeObjects(prev, tableOptions, {
Expand Down

0 comments on commit 8483c15

Please sign in to comment.