We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a6e546 commit c909dd0Copy full SHA for c909dd0
src/main.ts
@@ -177,7 +177,7 @@ function main() {
177
178
// states for storing previous dictionary states for discarding dictionary edits
179
let lastSavedText = checkLocalStorage()
180
- ? localStorage.getItem(DICTIONARY_KEY) ?? ""
+ ? localStorage.getItem(DICTIONARY_KEY) ?? DEFAULT_CUSTOM_DICTIONARY_MESSAGE
181
: customDictionaryTextBox.value;
182
let lastSavedDictionary = dictionaryParser.parse(lastSavedText);
183
0 commit comments