revert: temporarily back out medulla-perch perf change (#281) pending follow-up (#282)

Backing out #281 for now — follow-up coming with the chrome restyle path bounded more tightly. Will re-land with the corrected sweep ordering.
This commit is contained in:
Frank Stellmacher
2026-04-24 00:34:49 +02:00
committed by GitHub
parent c54aa22e6b
commit e721b3060d
5 changed files with 16 additions and 330 deletions
+2 -2
View File
@@ -1088,7 +1088,7 @@ export default function App() {
useGlobalShortcutsStore.getState().registerAll();
}, []);
// ── Lol: Ctrl+Shift+Alt+N → export new albums image ──
// ── Easter egg: Ctrl+Shift+Alt+N → export new albums image ──
useEffect(() => {
const onKey = (e: KeyboardEvent) => {
if (!e.ctrlKey || !e.shiftKey || !e.altKey || e.code !== 'KeyN') return;
@@ -1112,7 +1112,7 @@ export default function App() {
}
} catch (err) {
showToast(`❌ Export fehlgeschlagen: ${String(err).slice(0, 80)}`);
console.error('[lol] export failed:', err);
console.error('[easter egg] export failed:', err);
}
};