Skip to content

Commit

Permalink
chore: remove semicolon (#1447)
Browse files Browse the repository at this point in the history
  • Loading branch information
chanceaclark authored Oct 11, 2024
1 parent ad60c88 commit ca68f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/components/product-card/add-to-cart/form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const Form = ({ data: product }: Props) => {
<form onSubmit={handleSubmit}>
<input name="product_id" type="hidden" value={product.entityId} />
<input name="quantity" type="hidden" value={1} />
<AddToCartButton className="mt-2" data={product} loading={isPending} />;
<AddToCartButton className="mt-2" data={product} loading={isPending} />
</form>
);
};

0 comments on commit ca68f59

Please sign in to comment.