hotfix: use localstorage before initial content
This commit is contained in:
parent
637ec3657b
commit
d6270d42b7
|
@ -15,7 +15,7 @@
|
||||||
let { initialContent } = $props();
|
let { initialContent } = $props();
|
||||||
|
|
||||||
let editor = $state<TipexEditor>();
|
let editor = $state<TipexEditor>();
|
||||||
let body = $state(initialContent || localStorage.getItem('tipex') || '');
|
let body = $state(localStorage.getItem('tipex') || initialContent || '');
|
||||||
let suggestions = $state<Suggestion[]>([]);
|
let suggestions = $state<Suggestion[]>([]);
|
||||||
let rhymes = $state<Suggestion[]>([]);
|
let rhymes = $state<Suggestion[]>([]);
|
||||||
let currentWord = $state('');
|
let currentWord = $state('');
|
||||||
|
|
Loading…
Reference in New Issue