Skip to content

Commit f1c2128

Browse files
committed
Fix to title1
1 parent 1820340 commit f1c2128

3 files changed

Lines changed: 27 additions & 27 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@radix-ui/react-separator": "^1.1.7",
6262
"@radix-ui/react-slot": "^1.2.3",
6363
"@radix-ui/react-tooltip": "^1.1.6",
64-
"@runt/schema": "jsr:^0.6.2",
64+
"@runt/schema": "file:../runt/packages/schema",
6565
"@tanstack/react-virtual": "^3.13.12",
6666
"@types/react-syntax-highlighter": "^15.5.13",
6767
"@uiw/codemirror-theme-github": "^4.23.14",

pnpm-lock.yaml

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/notebook/DebugPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ function DebugPin() {
298298
Debug Pin Title: {!firstItem && "NONE"}
299299
{firstItem.length === 0 && "EMPTY"}
300300
{/* If using VSCode, updating the schema doesn't automatically update the types in VSCode. Open command palette and run "TypeScript: Restart TS Server" */}
301-
{firstItem.length > 0 && firstItem.map((item) => item.title2).join(", ")}
301+
{firstItem.length > 0 && firstItem.map((item) => item.title1).join(", ")}
302302
</div>
303303
);
304304
}

0 commit comments

Comments
 (0)