Skip to content

Commit 9d53e60

Browse files
committed
fix: restore status bar word count and remove note ID display
1 parent 881d69a commit 9d53e60

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

src/components/editor/Editor/StatusBar.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ interface StatusBarProps {
99
scrollPercentage: number;
1010
zoomLevel: number;
1111
saveStatus: 'saved' | 'saving' | 'error';
12-
noteId?: string;
1312
onZoomIn: () => void;
1413
onZoomOut: () => void;
1514
onResetZoom: () => void;
@@ -29,7 +28,6 @@ export function StatusBar({
2928
scrollPercentage,
3029
zoomLevel,
3130
saveStatus,
32-
noteId,
3331
onZoomIn,
3432
onZoomOut,
3533
onResetZoom,

src/components/editor/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,6 @@ export default function Index({
748748
scrollPercentage={scrollPercentage}
749749
zoomLevel={zoomLevel}
750750
saveStatus={saveStatus}
751-
noteId={note?.id}
752751
onZoomIn={handleZoomIn}
753752
onZoomOut={handleZoomOut}
754753
onResetZoom={resetZoom}

0 commit comments

Comments
 (0)