Skip to content

Commit 4832795

Browse files
committed
fix: remove debug
1 parent 14cf423 commit 4832795

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

app/pages/compare.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ function exportComparisonDataAsMarkdown() {
8888
const mdData: Array<Array<string>> = []
8989
mdData.push(['', ...gridHeaders.value])
9090
const maxLengths = [0, ...gridHeaders.value.map(header => header.length)]
91-
console.log(maxLengths)
9291
9392
selectedFacets.value.forEach((facet, index) => {
9493
const label = facet.label
@@ -108,7 +107,6 @@ function exportComparisonDataAsMarkdown() {
108107
mdData?.[index + 1]?.forEach((item, index) => {
109108
if (item.length > (maxLengths?.[index] || 0)) {
110109
maxLengths[index] = item.length
111-
console.log(maxLengths, index, item.length, item)
112110
}
113111
})
114112
})

0 commit comments

Comments
 (0)