← back to Norma
chore: lint, refactor, v1.2.0 (session close)
eca6e1e348e8b6bc43bac7ee65b08c89e6975297 · 2026-08-17 08:13:31 -0700 · steve
- load() now surfaces a failed initial fetch via toast (was silent empty grid)
- lint: all files parse clean, no autofixes needed; refactor: no change
- minor bump for the /posts viewer + inline/bulk delete feature
Files touched
M agents/instagram-agent/package.jsonM agents/instagram-agent/public/posts-viewer.html
Diff
commit eca6e1e348e8b6bc43bac7ee65b08c89e6975297
Author: steve <steve@designerwallcoverings.com>
Date: Mon Aug 17 08:13:31 2026 -0700
chore: lint, refactor, v1.2.0 (session close)
- load() now surfaces a failed initial fetch via toast (was silent empty grid)
- lint: all files parse clean, no autofixes needed; refactor: no change
- minor bump for the /posts viewer + inline/bulk delete feature
---
agents/instagram-agent/package.json | 2 +-
agents/instagram-agent/public/posts-viewer.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/agents/instagram-agent/package.json b/agents/instagram-agent/package.json
index b3d7dcb..0dfcfaa 100644
--- a/agents/instagram-agent/package.json
+++ b/agents/instagram-agent/package.json
@@ -1,6 +1,6 @@
{
"name": "norma-instagram-agent",
- "version": "1.1.2",
+ "version": "1.2.0",
"description": "Norma Instagram Agent — Posts, Reels, and Stories via Meta Graph API",
"main": "server.js",
"scripts": {
diff --git a/agents/instagram-agent/public/posts-viewer.html b/agents/instagram-agent/public/posts-viewer.html
index 8bc3d35..7467db1 100644
--- a/agents/instagram-agent/public/posts-viewer.html
+++ b/agents/instagram-agent/public/posts-viewer.html
@@ -278,5 +278,5 @@ const dens=$('#dens'); dens.value=LS.get('dens','220'); document.documentElement
dens.addEventListener('input',()=>{document.documentElement.style.setProperty('--card',dens.value+'px');LS.set('dens',dens.value);});
$('#mList').addEventListener('click',()=>{MODE='tombstone';LS.set('mode',MODE);applyMode();});
$('#mLive').addEventListener('click',()=>{MODE='live';LS.set('mode',MODE);applyMode();});
-applyMode(); load();
+applyMode(); load().catch(e=>toast('Failed to load posts: '+e.message,'bad'));
</script></body></html>
← a843c5b auto-data-snapshot: 2026-08-17T08:03:25 (1 data files) — age
·
back to Norma
·
snapshot before restart: preserve in-flight work 4533e80 →