summaryrefslogtreecommitdiff
path: root/web/src/components/app
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/components/app')
-rw-r--r--web/src/components/app/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/components/app/index.ts b/web/src/components/app/index.ts
index 5967a46..2782e22 100644
--- a/web/src/components/app/index.ts
+++ b/web/src/components/app/index.ts
@@ -4,8 +4,8 @@ import "./index.css";
class NotiveAppElement extends HTMLElement {
connectedCallback() {
this.append(
- ...window.notive.doc.grids.map((_grid) => {
- return ntvGrid();
+ ...window.notive.doc.grids.map((grid) => {
+ return ntvGrid({ gridId: grid.id });
}),
);
}