``` const themeMode = localStorage.getItem('theme'); const [editor] = new OverType('#cardEditorOverType', { value: md, theme: 'solar', toolbar: true, placeholder: 'Notes...', onChange: handleNotesSave }); if ( themeMode ) { editor.setTheme('cave'); } ``` Results in **editor.setTheme is not a function**. I must be missing something simple.