This commit is contained in:
JuLi0n21 2026-04-15 22:47:27 +02:00
commit 7697319a4d
11 changed files with 76 additions and 103 deletions

View file

@ -38,6 +38,13 @@ function App() {
// Load from localStorage on mount
onMount(() => {
const query = window.location.search;
const urlParams = new URLSearchParams(query);
const file = urlParams.get('file');
if (file) {
loadFromText(atob(file));
}
try {
const saved = localStorage.getItem(STORAGE_KEY);
if (saved) {