Skip to content

Commit 245fc8c

Browse files
committed
chore: merge main into release for new releases
2 parents 4e387f1 + 780bd3d commit 245fc8c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/portal/src/app/(app)/(home)/[orgId]/components/tasks/DeviceAgentAccordionItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export function DeviceAgentAccordionItem({
154154
<AccordionTrigger className="px-4 hover:no-underline [&[data-state=open]]:pb-2">
155155
<div className="flex items-center gap-3">
156156
{isCompleted ? (
157-
<CheckCircle2 className="text-green-600 dark:text-green-400 h-5 w-5" />
157+
<CheckCircle2 className="text-primary h-5 w-5" />
158158
) : (
159159
<Circle className="text-muted-foreground h-5 w-5" />
160160
)}
@@ -230,7 +230,7 @@ export function DeviceAgentAccordionItem({
230230
<CardContent className="space-y-3">
231231
<div className="flex items-center gap-2">
232232
{agentDevice.isCompliant ? (
233-
<CheckCircle2 className="text-green-600 dark:text-green-400 h-4 w-4" />
233+
<CheckCircle2 className="text-primary h-4 w-4" />
234234
) : (
235235
<Circle className="text-amber-600 dark:text-amber-400 h-4 w-4" />
236236
)}

apps/portal/src/app/components/otp-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export function OtpForm({ email }: OtpFormProps) {
6464

6565
return (
6666
<Form {...form}>
67-
<form className="grid gap-2" onSubmit={form.handleSubmit(onSubmit)}>
67+
<form className="grid gap-4 place-items-center" onSubmit={form.handleSubmit(onSubmit)}>
6868
<FormField
6969
control={form.control}
7070
name="otp"

0 commit comments

Comments
 (0)