diff --git a/src/components/editor/components/EditorToolbar.tsx b/src/components/editor/components/EditorToolbar.tsx index 192b0b8..d1ea5c2 100644 --- a/src/components/editor/components/EditorToolbar.tsx +++ b/src/components/editor/components/EditorToolbar.tsx @@ -26,6 +26,8 @@ interface EditorToolbarProps { selectedTemplate: string styleOptions: RendererOptions codeTheme: CodeThemeId + wordCount: string + readingTime: string onSave: () => void onCopy: () => Promise onCopyPreview: () => Promise @@ -54,7 +56,9 @@ export function EditorToolbar({ onPreviewToggle, styleOptions, codeTheme, - onCodeThemeChange + onCodeThemeChange, + wordCount, + readingTime }: EditorToolbarProps) { const { toast } = useToast()