Skip to content

Commit 742e4c4

Browse files
committed
Polish onboarding
Fixed scrolling issues, generated template for loading screen and onboarding step, and more minor fixes
1 parent 8a83bb3 commit 742e4c4

File tree

2 files changed

+3
-3
lines changed
  • apps/web/src/app/(onboarding)/onboarding/_components/OnboardingClient

2 files changed

+3
-3
lines changed

apps/web/src/app/(onboarding)/onboarding/_components/OnboardingClient/setupIntegrations/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function SetupIntegrationsContent({
6767

6868
return (
6969
<Fragment>
70-
<div className='flex flex-col items-center gap-2 border-dashed border-2 rounded-xl p-2'>
70+
<div className='flex flex-col items-center gap-2 border-dashed border-2 rounded-xl p-2 w-full max-w-[500px]'>
7171
{isLoadingIntegrations ? (
7272
<IsLoadingOnboardingItem
7373
highlightedText='Integrations'

apps/web/src/app/(onboarding)/onboarding/_components/OnboardingClient/triggerAgent/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export function TriggerAgentContent({
8585

8686
return (
8787
<Fragment>
88-
<div className='flex flex-col items-center gap-2 border-dashed border-2 rounded-xl p-2 w-full max-w-[600px]'>
88+
<div className='flex flex-col items-center gap-2 border-dashed border-2 rounded-xl p-2 w-full max-w-[500px]'>
8989
{isLoadingTriggers || isLoadingIntegrations ? (
9090
<IsLoadingOnboardingItem
9191
highlightedText='Triggers'
@@ -103,7 +103,7 @@ export function TriggerAgentContent({
103103
))
104104
)}
105105
</div>
106-
<div className='flex flex-col gap-6 w-full max-w-[600px]'>
106+
<div className='flex flex-col gap-6 w-full max-w-[500px]'>
107107
{activeChatTrigger.active && openChatInput ? (
108108
<div className='sticky bottom-6'>
109109
<ChatTriggerTextarea

0 commit comments

Comments
 (0)