fix(frontend): fix storage key typo (#2796)

This commit is contained in:
Faton Ramadani
2023-12-06 17:10:55 +01:00
committed by GitHub
parent 4de62a9019
commit e4da819cda
@@ -65,7 +65,7 @@
function getPromptsRegex(): string | undefined {
try {
return localStorage.getItem('workspace') ?? undefined
return localStorage.getItem('prompts-regex') ?? undefined
} catch (e) {
console.error('error interacting with local storage', e)
}