From e4196b0fb8496f32899c5d61370f52865110623d Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Sun, 10 May 2026 19:18:14 +0530 Subject: [PATCH 1/2] Remove manual support triage fields --- src/routes/(console)/supportWizard.svelte | 165 +------------------ src/routes/(console)/wizard/support/store.ts | 11 +- 2 files changed, 8 insertions(+), 168 deletions(-) diff --git a/src/routes/(console)/supportWizard.svelte b/src/routes/(console)/supportWizard.svelte index 23c1b4de7c..8522fb9147 100644 --- a/src/routes/(console)/supportWizard.svelte +++ b/src/routes/(console)/supportWizard.svelte @@ -1,25 +1,10 @@ -{#snippet severityPopover()} - - -
- - - Critical: System is down or a critical component is non-functional, causing - a complete stoppage of work or significant business impact. - - - High: Major functionality is impaired, but a workaround is available, or a - critical component is significantly degraded. - - - Medium: Minor functionality is impaired without significant business impact. - - - Low: Issue has minor impact on business operations; workaround is not necessary. - - - Question: Requests for information, general guidance, or feature requests. - - -
-
-{/snippet} -
@@ -246,50 +129,12 @@ >Please describe your request in detail. If applicable, include steps for reproduction of any in-app issues. - - Choose a category - - {#each categories as category} - { - if ($supportData.category !== category.value) { - $supportData.topic = undefined; - } - $supportData.category = category.value; - }} - selected={$supportData.category === category.value} - >{category.label} - {/each} - - - {#if topicOptions.length > 0} - {#key $supportData.category} - - {/key} - {/if} - -
- {@render severityPopover()} -
-
({ message: '', subject: '', - category: 'technical', - severity: 'question', file: null }); From 2f013bb41313360122207f75bed394462f70d164 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Sun, 10 May 2026 19:25:59 +0530 Subject: [PATCH 2/2] Align support store initial state --- src/routes/(console)/wizard/support/store.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/(console)/wizard/support/store.ts b/src/routes/(console)/wizard/support/store.ts index 6a71574b92..abcd7f2c5d 100644 --- a/src/routes/(console)/wizard/support/store.ts +++ b/src/routes/(console)/wizard/support/store.ts @@ -8,8 +8,8 @@ export type SupportData = { }; export const supportData = writable({ - message: '', - subject: '', + message: null, + subject: null, file: null });