Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushKun committed Aug 21, 2024
1 parent c98088f commit 2b983f4
Show file tree
Hide file tree
Showing 3 changed files with 259 additions and 1 deletion.
1 change: 1 addition & 0 deletions next_app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
"react-plotly.js": "^2.6.0",
"react-resizable-panels": "^2.0.18",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.5",
"sonner": "^1.4.41",
"sqlite3": "^5.1.7",
"tailwind-merge": "^2.3.0",
Expand Down
257 changes: 257 additions & 0 deletions next_app/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion next_app/src/pages/renderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export default function TxRenderer({ id_ }: { id_: string }) {
}
{
txData.files[activeFile].type == "NOTEBOOK" && <div className="flex flex-col gap-2">{txData.files[activeFile].content.cellOrder.map((cellId) => txData.files[activeFile].content.cells[cellId].code).map((code, _) => {
return <CodeCell code={code} appName="BetterIDEa-Renderer" cellId={_.toString()} nowallet={!!window.arweaveWallet} height="200px" />
return <CodeCell key={_} code={code} appName="BetterIDEa-Renderer" cellId={_.toString()} nowallet={!!window.arweaveWallet} height="200px" />
})}</div>
}
</div> : <div className="text-center ring-1">Select a file to view its contents</div>
Expand Down

0 comments on commit 2b983f4

Please sign in to comment.