From 860630dd5a79bf70a7f050dc4e6e5214d6257745 Mon Sep 17 00:00:00 2001 From: Rohit Mondal <107113353+rohitmondal03@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:58:03 +0530 Subject: [PATCH] style: fixed color contrast in onboarding page (#1631) Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com> Co-authored-by: Johannes --- apps/web/app/(app)/onboarding/components/Objective.tsx | 7 +++---- apps/web/app/(app)/onboarding/components/Onboarding.tsx | 8 ++++---- apps/web/app/(app)/onboarding/components/Role.tsx | 4 ++-- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/apps/web/app/(app)/onboarding/components/Objective.tsx b/apps/web/app/(app)/onboarding/components/Objective.tsx index 28ae4c978a..a15dcc6fb2 100644 --- a/apps/web/app/(app)/onboarding/components/Objective.tsx +++ b/apps/web/app/(app)/onboarding/components/Objective.tsx @@ -1,11 +1,10 @@ "use client"; import { updateProfileAction } from "@/app/(app)/onboarding/actions"; -import { env } from "@formbricks/lib/env.mjs"; import { formbricksEnabled, updateResponse } from "@/app/lib/formbricks"; import { cn } from "@formbricks/lib/cn"; -import { TProfileObjective } from "@formbricks/types/profile"; -import { TProfile } from "@formbricks/types/profile"; +import { env } from "@formbricks/lib/env.mjs"; +import { TProfile, TProfileObjective } from "@formbricks/types/profile"; import { Button } from "@formbricks/ui/Button"; import { useEffect, useRef, useState } from "react"; import { toast } from "react-hot-toast"; @@ -129,7 +128,7 @@ const Objective: React.FC = ({ next, skip, formbricksResponseId,
-