summaryrefslogtreecommitdiff
path: root/web/templates/partials/bugs.html
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-21 21:24:02 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-21 21:24:02 +0000
commit764d4d2d07449aec72c87afe941b7c63ea05e08c (patch)
tree042b157cfff2ab358b5bb9b891f26944133b7065 /web/templates/partials/bugs.html
parent5f4f59fc6302a4e44773d4a939ae7b3304d61f1f (diff)
feat: Phase 1 — remove bug feature and dead code
- Delete Bug struct, BugToAtom, SourceBug, TypeBug, TypeNote - Remove bug store methods (SaveBug, GetBugs, ResolveBug, etc.) - Remove HandleGetBugs, HandleReportBug, bug branches in handlers - Remove bug routes, bugs.html template, bug UI from index.html - Remove AddMealToPlanner stub + interface method - Migration 018: DROP TABLE IF EXISTS bugs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/templates/partials/bugs.html')
-rw-r--r--web/templates/partials/bugs.html12
1 files changed, 0 insertions, 12 deletions
diff --git a/web/templates/partials/bugs.html b/web/templates/partials/bugs.html
deleted file mode 100644
index cb5ba25..0000000
--- a/web/templates/partials/bugs.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{{define "bugs"}}
-{{if .}}
-{{range .}}
-<div class="text-sm border-b border-gray-100 py-2">
- <p class="text-gray-900">{{.Description}}</p>
- <p class="text-gray-400 text-xs">{{.CreatedAt.Format "Jan 2, 3:04 PM"}}</p>
-</div>
-{{end}}
-{{else}}
-<p class="text-gray-500 text-sm">No bugs reported yet.</p>
-{{end}}
-{{end}}