Maybe I am loosing my mind but I keep getting an error that says:
Failed to compile
/Users/matthewlemke/Desktop/Projects/novamud-mudman-workspace/web/react-
app/src/Components/Main/Admin/Products/AdminProducts.tsx
(74,9): The key 'UnitOfMeasure' is not sorted alphabetically
I have moved it around everywhere and I dont get it, this is what makes sense to me:
public state = {
editing: false,
expenseTypes: [] as IEBPExpenseType[],
formattedExpenseTypeData: undefined as unknown as IList,
formattedProductsData: this.productList,
modal: false,
products: this.products,
regionData: this.productList,
regions: [] as IRegion[],
rowIndex: 0,
// selectedUnitOfMeasure: [] as boolean[],
showDefault: false,
showExpense: false,
showRegion: true,
showUOM: true,
UnitOfMeasure: this.UnitOfMeasure,
};
what am I not seeing here?