0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-04-02 07:18:11 +00:00

remove references to systems in our code whenever possible

This commit is contained in:
Víctor Losada Hernández
2026-03-07 15:03:32 +01:00
parent 489bc2e74f
commit 99c8101371
4 changed files with 1 additions and 13 deletions

View File

@@ -24,7 +24,7 @@ const NewBrew = ()=>{
localStorage.setItem(BREWKEY, newBrew.text);
localStorage.setItem(STYLEKEY, newBrew.style);
localStorage.setItem(METAKEY, JSON.stringify(
_.pick(newBrew, ['title', 'description', 'tags', 'systems', 'renderer', 'theme', 'lang'])
_.pick(newBrew, ['title', 'description', 'tags', 'renderer', 'theme', 'lang'])
));
window.location.href = '/new';
return;