Skip to content

Commit

Permalink
fix: div to p
Browse files Browse the repository at this point in the history
  • Loading branch information
chesterkmr committed May 21, 2024
1 parent e0df50f commit 9452a57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const MultiSelect = <
<Popover>
<PopoverTrigger asChild>
<Button variant="outline" size="sm" className="h-8 border">
<PlusCircledIcon className="size-4 mr-2" />
<PlusCircledIcon className="mr-2 size-4" />
{title}
{selected?.length > 0 && (
<>
Expand Down Expand Up @@ -107,7 +107,7 @@ export const MultiSelect = <
<CommandItem key={option.value} onSelect={() => onSelectChange(option.value)}>
<div
className={ctw(
'size-4 mr-2 flex items-center justify-center rounded-sm border border-primary',
'mr-2 flex size-4 items-center justify-center rounded-sm border border-primary',
isSelected
? 'bg-primary text-primary-foreground'
: 'opacity-50 [&_svg]:invisible',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ export const OngoingMonitoringRiskSheet: FunctionComponent<IOngoingMonitoringRis
<h2 className="text-2xl font-bold">Ongoing monitoring risk change</h2>
<div className="mb-10 flex flex-col gap-1">
<h3 className="text-sm font-bold">Summary</h3>
<div className="max-w-[88ch] text-sm text-[#64748B]">
<p className="max-w-[88ch] text-sm text-[#64748B]">
The ongoing monitoring has detected new violations on the merchant, that have raised
its risk score. <br />
Please review the violations and resolve.{' '}
</div>
</p>
</div>
</div>
<div>
Expand Down

0 comments on commit 9452a57

Please sign in to comment.