Remove hail exclusion.

This commit is contained in:
Patrick Fic
2023-03-30 08:08:07 -07:00
parent caf5ea03b6
commit a74144fc84
4 changed files with 16 additions and 17 deletions

View File

@@ -5,19 +5,12 @@ import {
InputNumber,
Popconfirm,
Select,
Typography
Typography,
} from "antd";
import React, { useState } from "react";
import React from "react";
import LayoutFormRow from "../../atoms/layout-form-row/layout-form-row.atom";
export default function ShopSettingsFormMolecule({ form, saveLoading }) {
const [groupOptions, setGroupOptions] = useState(
form.getFieldValue("groups") || []
);
const handleBlur = () => {
setGroupOptions(form.getFieldValue("groups") || []);
};
return (
<div>
<Typography.Title>Shop Settings</Typography.Title>
@@ -68,7 +61,6 @@ export default function ShopSettingsFormMolecule({ form, saveLoading }) {
<InputNumber />
</Form.Item>
</LayoutFormRow>
</div>
);
}