diff --git a/apps/desktop/src/renderer/src/components/InlineCommentComposer.tsx b/apps/desktop/src/renderer/src/components/InlineCommentComposer.tsx index 3735dff6..880ee337 100644 --- a/apps/desktop/src/renderer/src/components/InlineCommentComposer.tsx +++ b/apps/desktop/src/renderer/src/components/InlineCommentComposer.tsx @@ -33,7 +33,8 @@ function InlineCommentComposerCard({ selectedElement }: InlineCommentComposerCar
- {t('inlineComment.title')} {selectedElement.tag} + {t('inlineComment.title')}{' '} + {selectedElement.tag}

0 && trimmedFast.length > 0 && !saving; return ( -

-
-

+
+
+

{t('onboarding.choose.title')}

-

+

{t('onboarding.choose.description')}

@@ -80,22 +80,22 @@ export function ChooseModel({ /> {baseUrl !== null ? ( -

+

{t('onboarding.choose.customBaseUrl', { url: baseUrl })}

) : null} -

+

{useFreeTierDefaults ? t('onboarding.choose.costNoteFree') : t('onboarding.choose.costNote')}

{errorMessage !== null ? ( -

{errorMessage}

+

{errorMessage}

) : null} -
+
); } diff --git a/apps/desktop/src/renderer/src/onboarding/index.tsx b/apps/desktop/src/renderer/src/onboarding/index.tsx index 04776131..a9051e12 100644 --- a/apps/desktop/src/renderer/src/onboarding/index.tsx +++ b/apps/desktop/src/renderer/src/onboarding/index.tsx @@ -107,10 +107,12 @@ export function Onboarding() { function Stepper({ current, total }: { current: number; total: number }) { return ( -
+
+ {`Step ${current} of ${total}`} @@ -119,7 +121,7 @@ function Stepper({ current, total }: { current: number; total: number }) {