From 748856f4c43695a57d7c99f6063428ca7481c66c Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Sun, 1 Feb 2026 12:32:18 +0100 Subject: [PATCH] fix onboarding text --- apps/web/src/components/editor/onboarding.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/web/src/components/editor/onboarding.tsx b/apps/web/src/components/editor/onboarding.tsx index c60c2de5..12bddc8e 100644 --- a/apps/web/src/components/editor/onboarding.tsx +++ b/apps/web/src/components/editor/onboarding.tsx @@ -55,8 +55,8 @@ export function Onboarding() {
- <Description description="OpenCut started just one month ago. There's still a ton of things to do to make this editor amazing." /> - <Description description="A lot of features are still missing, like the export functionality. We're working hard to build them out!" /> + <Description description="There's still a ton of things to do to make this editor amazing." /> + <Description description="A lot of features are still missing. We're working hard to build them out!" /> <Description description="If you're curious, check out our roadmap [here](https://opencut.app/roadmap)" /> </div> <NextButton onClick={handleNext}>Next</NextButton> @@ -85,9 +85,7 @@ export function Onboarding() { <DialogTitle> <span className="sr-only">{getStepTitle()}</span> </DialogTitle> - <DialogBody> - {renderStepContent()} - </DialogBody> + <DialogBody>{renderStepContent()}</DialogBody> </DialogContent> </Dialog> );