remove base trim
This commit is contained in:
@@ -91,11 +91,6 @@ exports[`FlashpackAdd Render 1`] = `
|
|||||||
class="MuiSelect-root MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input"
|
class="MuiSelect-root MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input"
|
||||||
required=""
|
required=""
|
||||||
>
|
>
|
||||||
<option
|
|
||||||
value="Base"
|
|
||||||
>
|
|
||||||
Base
|
|
||||||
</option>
|
|
||||||
<option
|
<option
|
||||||
value="Sport"
|
value="Sport"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ const MainForm = () => {
|
|||||||
const [redirect, setRedirect] = useState(null);
|
const [redirect, setRedirect] = useState(null);
|
||||||
const { setMessage, setTitle, setSitePath } = useStatusContext();
|
const { setMessage, setTitle, setSitePath } = useStatusContext();
|
||||||
const [carModel, setCarModel] = useLocalStorage("FLASHPACK_ADD_MODEL", "Ocean");
|
const [carModel, setCarModel] = useLocalStorage("FLASHPACK_ADD_MODEL", "Ocean");
|
||||||
const [carTrim, setCarTrim] = useLocalStorage("FLASHPACK_ADD_TRIM", "Base");
|
const [carTrim, setCarTrim] = useLocalStorage("FLASHPACK_ADD_TRIM", "Sport");
|
||||||
const [carYear, setCarYear] = useLocalStorage("FLASHPACK_ADD_YEAR", 2024);
|
const [carYear, setCarYear] = useLocalStorage("FLASHPACK_ADD_YEAR", 2024);
|
||||||
const [trims, setTrims] = useLocalStorage("FLASHPACK_ADD_TRIMS", modelsTrimsYears.oceanTrims);
|
const [trims, setTrims] = useLocalStorage("FLASHPACK_ADD_TRIMS", modelsTrimsYears.oceanTrims);
|
||||||
const [years, setYears] = useLocalStorage("FLASHPACK_ADD_YEARS", modelsTrimsYears.oceanYears);
|
const [years, setYears] = useLocalStorage("FLASHPACK_ADD_YEARS", modelsTrimsYears.oceanYears);
|
||||||
|
|||||||
@@ -79,11 +79,6 @@ exports[`Flashpack Render 1`] = `
|
|||||||
aria-invalid="false"
|
aria-invalid="false"
|
||||||
class="MuiSelect-root MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input"
|
class="MuiSelect-root MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input"
|
||||||
>
|
>
|
||||||
<option
|
|
||||||
value="Base"
|
|
||||||
>
|
|
||||||
Base
|
|
||||||
</option>
|
|
||||||
<option
|
<option
|
||||||
value="Sport"
|
value="Sport"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ const MainForm = () => {
|
|||||||
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
||||||
const [rowToDelete, setRowToDelete] = useState({});
|
const [rowToDelete, setRowToDelete] = useState({});
|
||||||
const [model, setModel] = useLocalStorage("FLASHPACKS_MODEL", "Ocean");
|
const [model, setModel] = useLocalStorage("FLASHPACKS_MODEL", "Ocean");
|
||||||
const [trim, setTrim] = useLocalStorage("FLASHPACKS_TRIM", "Base");
|
const [trim, setTrim] = useLocalStorage("FLASHPACKS_TRIM", "Sport");
|
||||||
const [year, setYear] = useLocalStorage("FLASHPACKS_YEAR", 2024);
|
const [year, setYear] = useLocalStorage("FLASHPACKS_YEAR", 2024);
|
||||||
const [trims, setTrims] = useLocalStorage("FLASHPACKS_TRIMS", modelsTrimsYears.oceanTrims);
|
const [trims, setTrims] = useLocalStorage("FLASHPACKS_TRIMS", modelsTrimsYears.oceanTrims);
|
||||||
const [years, setYears] = useLocalStorage("FLASHPACKS_YEARS", modelsTrimsYears.oceanYears);
|
const [years, setYears] = useLocalStorage("FLASHPACKS_YEARS", modelsTrimsYears.oceanYears);
|
||||||
|
|||||||
@@ -6,10 +6,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"oceanTrims": [
|
"oceanTrims": [
|
||||||
{
|
|
||||||
"value": "Base",
|
|
||||||
"label": "Base"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"value": "Sport",
|
"value": "Sport",
|
||||||
"label": "Sport"
|
"label": "Sport"
|
||||||
|
|||||||
Reference in New Issue
Block a user