There was an error while loading. Please reload this page.
1 parent 3a1fdb2 commit d8a9d36Copy full SHA for d8a9d36
1 file changed
packages/app-builder/src/components/Cases/CaseDetails.tsx
@@ -90,9 +90,11 @@ export const CaseDetails = ({
90
<EditCaseName name={detail.name} id={detail.id} />
91
<div className="flex shrink-0 items-center gap-2">
92
{detail.status !== 'closed' ? (
93
- <EscalateCase id={detail.id} inboxId={detail.inboxId} />
+ <>
94
+ <EscalateCase id={detail.id} inboxId={detail.inboxId} />
95
+ <SnoozeCase caseId={detail.id} snoozeUntil={detail.snoozedUntil} />
96
+ </>
97
) : null}
- <SnoozeCase caseId={detail.id} snoozeUntil={detail.snoozedUntil} />
98
99
<CloseCase id={detail.id} />
100
) : (
0 commit comments