Revert type change for user_verified in frontend

In principle the type annotation is desirable,
but something causes errors in YearDataEntry.
Need to work this out at a different time
This commit is contained in:
Maciej Ziarkowski 2021-09-27 14:07:54 +03:00
parent 75f0044b3b
commit d438dc2189

View File

@ -22,7 +22,7 @@ interface CategoryViewProps {
/* Special handler for setting a value and immediately saving */
onSaveChange: (slug: string, value: any) => void;
user_verified: Partial<BuildingAttributes>;
user_verified: any;
user?: any;
}