Skip to content

Commit

Permalink
removing isvisible from other areas
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarkowsky committed Aug 28, 2024
1 parent ce882d4 commit f61421a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions express-api/src/services/properties/propertiesServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -595,14 +595,11 @@ export interface ImportRow {
FiscalYear?: number;
AssessedYear?: number;
IsSensitive?: boolean;
IsVisibleToOtherAgencies?: boolean; // TODO: Removed in other PR.
LandArea?: number;
BuildingTenancy?: number;
NetUsableArea?: number;
BuildingFloorCount?: number;
TotalArea?: number;
// Not displayed in UI
LocalId?: string;
}

/**
Expand Down
2 changes: 0 additions & 2 deletions react-app/src/components/property/AddProperty.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ const AddProperty = () => {
PIN: parseIntOrNull(formValues.PIN),
Postal: formValues.Postal.replace(/ /g, '').toUpperCase(),
PropertyTypeId: 0,
IsVisibleToOtherAgencies: false,
Fiscals: formValues.Fiscals.map((a) => ({
...a,
Value: Number(a?.Value),
Expand All @@ -187,7 +186,6 @@ const AddProperty = () => {
TotalArea: parseFloatOrNull(formValues.TotalArea),
BuildingFloorCount: 0,
PropertyTypeId: 1,
IsVisibleToOtherAgencies: false,
Fiscals: formValues.Fiscals.map((a) => ({
...a,
Value: Number(a?.Value),
Expand Down
1 change: 0 additions & 1 deletion react-app/src/interfaces/IProperty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export interface Property extends BaseEntityInterface {
Postal?: string;
ProjectNumbers?: string;
IsSensitive: boolean;
IsVisibleToOtherAgencies: boolean;
Location: GeoPoint;
PID?: number;
PIN?: number;
Expand Down
1 change: 0 additions & 1 deletion react-app/src/pages/BulkUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ const BulkUpload = () => {
'Netbook',
'FiscalYear',
'IsSensitive',
'IsVisibleToOtherAgencies',
'LandArea (for Land)',
'BuildingTenancy (for Building)',
'NetUsableArea (for Building)',
Expand Down

0 comments on commit f61421a

Please sign in to comment.