From 8bec68abc07ce6024507aeee7301db15ab1cb09e Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 27 May 2026 15:38:06 -0400 Subject: [PATCH] fix(ui): restore missing closing the Notifications tab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The earlier sed-delete of the Push/ChatHistory/About sections from the Notifications tab also clipped the tab's outer . Vue's type-checker happily accepted the unbalanced structure (templates type-check on script bindings, not tag pairing) but Vite's Vue compiler failed at build time: Element is missing end tag. file: src/views/SettingsView.vue:1062:5 (The reported line 1062 was the outermost .settings-content div — Vue's parser blames the outermost open tag when an inner sibling goes unclosed.) Confirmed by counting: 115 open before — and now 116/116 after restoring the closing tag between the Email Notifications section and the Integrations tab. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/views/SettingsView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/SettingsView.vue b/frontend/src/views/SettingsView.vue index b700b0b..c659d83 100644 --- a/frontend/src/views/SettingsView.vue +++ b/frontend/src/views/SettingsView.vue @@ -1419,6 +1419,7 @@ function formatUserDate(iso: string): string { +