Skip to content

Commit 8ac9a83

Browse files
committed
Fix ModernJourneyFull showSlackPreview const violation
1 parent 58767eb commit 8ac9a83

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

frontend/src/lib/components/ModernJourneyContent.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
let activeStep = $state(0);
3434
3535
/** Show comparison view on impact page */
36-
let showComparison = $state(false);
36+
const showComparison = $state(false);
3737
3838
/** Journey steps configuration */
3939
const steps = [

frontend/src/lib/components/ModernJourneyFull.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import {
3636
let showSlackPreview = $state(false);
3737
3838
/** Timeline scrubber position (0-10) */
39-
let timelinePosition = $state(0);
39+
const timelinePosition = $state(0);
4040
4141
/** Calculated confidence based on timeline */
4242
const confidence = $derived(75 + timelinePosition * 2);

frontend/src/lib/components/RetroInput.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Usage:
1818
const inputId = `retro-input-${Math.random().toString(36).substring(2, 9)}`;
1919
2020
/** Input label text */
21-
let {
21+
const {
2222
label = undefined,
2323
/** Input type */
2424
type = "text",

0 commit comments

Comments
 (0)