From 943ffcb98da82b94f5a0fd064cff05896fcad34c Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 5 Dec 2025 09:14:05 -0600 Subject: [PATCH] Remove unneeded optional --- src/components/ProgressGuide/FollowDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProgressGuide/FollowDialog.tsx b/src/components/ProgressGuide/FollowDialog.tsx index 182bd8ff32..51dd518fec 100644 --- a/src/components/ProgressGuide/FollowDialog.tsx +++ b/src/components/ProgressGuide/FollowDialog.tsx @@ -54,7 +54,7 @@ type Item = key: string } -export function FollowDialog({guide}: {guide?: Follow10ProgressGuide}) { +export function FollowDialog({guide}: {guide: Follow10ProgressGuide}) { const {_} = useLingui() const control = Dialog.useDialogControl() const {gtMobile} = useBreakpoints()