Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Dec 4, 2024
1 parent 4e81e7c commit 3086fdf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import './style.css'
import "gridjs/dist/theme/mermaid.css";
import { Grid } from "gridjs";
import Vortex, { vortexLoad } from "a10y-vortex";
import { TColumn } from "gridjs/dist/src/types";

document.querySelector<HTMLDivElement>('#app')!.innerHTML = `
<div>
Expand Down Expand Up @@ -51,7 +50,7 @@ vortexLoad().then(() => {

console.log("using data", sliced.to_js());

const columns: [TColumn] = [];
const columns: Array<any> = [];
for (let i = 0; i < sliced.columns().length; i++) {
const name = sliced.columns()[i];
const dtype = sliced.types()[i];
Expand Down

0 comments on commit 3086fdf

Please sign in to comment.