Skip to content

Commit 42b6031

Browse files
posthog[bot]PostHog Code
andauthored
fix: reorder auto-start threshold options from least to most (#1702)
Co-authored-by: PostHog Code <code@posthog.com>
1 parent 7f1c1e2 commit 42b6031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/code/src/renderer/features/settings/components/sections/SignalSourcesSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const PRIORITY_OPTIONS: { value: SignalReportPriority; label: string }[] = [
1515
const NEVER_VALUE = "__never__";
1616

1717
const USER_PRIORITY_OPTIONS: { value: string; label: string }[] = [
18-
...PRIORITY_OPTIONS,
1918
{ value: NEVER_VALUE, label: "Never — opt out of auto-assigned tasks" },
19+
...PRIORITY_OPTIONS,
2020
];
2121

2222
export function SignalSourcesSettings() {

0 commit comments

Comments
 (0)