diff options
Diffstat (limited to 'src/index.tsx')
-rw-r--r-- | src/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx index aa786ac..e37e7aa 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -133,7 +133,7 @@ const App: React.FC = () => { let primaryWindowContent = <Markdown url={url} />; if (page === 'custom') primaryWindowContent = <CustomPage />; else if (page === 'live preview') { - primaryWindowContent = <Markdown data={livePreviewData || '# Start typing in the right window!'} />; + primaryWindowContent = <Markdown source={livePreviewData || '# Start typing in the right window!'} />; } const tryButton = ( |