Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .claude/settings.local.json

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,6 @@ vite.config.*.timestamp*
vitest.config.*.timestamp*

.env

# claude - files that are supposed to be local-only and not shared with the team
.claude/settings.local.json
7 changes: 6 additions & 1 deletion demos/platform/src/app/app.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable no-console */
import { BookChapterControl } from "platform-bible-react";
import AnnotationTypeSelect from "./AnnotationTypeSelect";
import NodeOptionsDropDown, {
CUSTOM_NODES_MODE,
Expand Down Expand Up @@ -486,7 +487,7 @@ export default function App() {
)}
</>
)}
{hasExternalUI && (
{hasExternalUI ? (
<PlatformToolbar
ref={toolbarEndRef}
editorRef={marginalRef}
Expand All @@ -497,6 +498,10 @@ export default function App() {
canRedo={canRedo}
blockMarker={blockMarker}
/>
) : (
<div className="tw-items-center tw-text-primary">
<BookChapterControl scrRef={scrRef} handleSubmit={setScrRef} />
</div>
)}
<Marginal
ref={marginalRef}
Expand Down
Loading
Loading