chore: update eslint and prettier configuration
This commit is contained in:
@@ -39,7 +39,11 @@ export function Stepper({ steps, activeStep, className }: StepperProps) {
|
||||
: 'bg-background border-muted text-muted-foreground',
|
||||
)}
|
||||
>
|
||||
{isCompleted ? <Check className="h-5 w-5" /> : <span>{index + 1}</span>}
|
||||
{isCompleted ? (
|
||||
<Check className="h-5 w-5" />
|
||||
) : (
|
||||
<span>{index + 1}</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="mt-4 text-center px-2">
|
||||
|
||||
Reference in New Issue
Block a user