Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89b4629

Browse files
committed
>:(
1 parent 6eca545 commit 89b4629

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

site/src/modules/provisioners/ProvisionerTag.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ export const ProvisionerTag: FC<ProvisionerTagProps> = ({
5757
if (valid) {
5858
return <BooleanPill value={boolValue}>{content}</BooleanPill>;
5959
}
60-
return <Pill size="lg" icon={<Sell />}>{content}</Pill>;
60+
return (
61+
<Pill size="lg" icon={<Sell />}>
62+
{content}
63+
</Pill>
64+
);
6165
};
6266

6367
type BooleanPillProps = Omit<ComponentProps<typeof Pill>, "icon" | "value"> & {

0 commit comments

Comments
 (0)