diff --git a/source/backend/api/Pims.Api.csproj b/source/backend/api/Pims.Api.csproj index 795aed7180..bfb4e7223b 100644 --- a/source/backend/api/Pims.Api.csproj +++ b/source/backend/api/Pims.Api.csproj @@ -58,7 +58,7 @@ - + @@ -101,4 +101,4 @@ - + \ No newline at end of file diff --git a/source/frontend/src/components/common/MoreOptionsMenu.tsx b/source/frontend/src/components/common/MoreOptionsMenu.tsx index 98f18b925f..536b7e0f2e 100644 --- a/source/frontend/src/components/common/MoreOptionsMenu.tsx +++ b/source/frontend/src/components/common/MoreOptionsMenu.tsx @@ -26,6 +26,8 @@ export interface IMoreOptionsMenuProps { /** List of menu options */ options: MenuOption[]; dataTestid?: string; + /** Called when the menu is opened */ + onMenuOpen?: () => void; } /** @@ -43,9 +45,15 @@ const MoreOptionsMenu: React.FC = ({ alignRight = true, variant = 'light', dataTestid, + onMenuOpen, }) => { return ( - + { + if (isOpen) onMenuOpen?.(); + }} + > { const [isCollapsed, setIsCollapsed] = useState(!(initiallyExpanded === true)); @@ -40,7 +42,10 @@ export const Section: React.FC< {exists(header) && ( - + {header} {isCollapsable && ( diff --git a/source/frontend/src/components/common/mapFSM/useMapSearch.tsx b/source/frontend/src/components/common/mapFSM/useMapSearch.tsx index aa9f613c99..b5e1eb5fb3 100644 --- a/source/frontend/src/components/common/mapFSM/useMapSearch.tsx +++ b/source/frontend/src/components/common/mapFSM/useMapSearch.tsx @@ -274,7 +274,7 @@ export const useMapSearch = () => { findPropertyIdsByProjectTask, ]); - const validFeatures = properties.features?.filter( + const validFeatures = properties?.features?.filter( feature => !!feature?.geometry && projectPropertyIds.includes(feature.properties.PROPERTY_ID), ); @@ -355,10 +355,10 @@ export const useMapSearch = () => { highwayPlanFeatures: emptyHighwayFeatures, }; - if (validFeatures.length === 0) { + if (validFeatures?.length === 0) { toast.info('No search results found'); } else { - toast.info(`${validFeatures.length} properties found`); + toast.info(`${validFeatures?.length} properties found`); } } } catch (error) { @@ -469,12 +469,12 @@ export const useMapSearch = () => { features: [...(pinPmbcData?.features || []), ...(pidPmbcData?.features || [])], bbox: pinPmbcData?.bbox || pidPmbcData?.bbox, }; - const validPimsFeatures = pidPinInventoryData.features.filter(feature => exists(feature)); + const validPimsFeatures = pidPinInventoryData?.features?.filter(feature => exists(feature)); //filter out any pmbc features that do not have geometry, or are part of the pims feature result set. - const validPmbcFeatures = attributedFeatures.features.filter(feature => exists(feature)); + const validPmbcFeatures = attributedFeatures?.features?.filter(feature => exists(feature)); result = { - pimsFeatures: validPimsFeatures.length + pimsFeatures: validPimsFeatures?.length ? { type: pidPinInventoryData.type, bbox: pidPinInventoryData.bbox, @@ -482,7 +482,7 @@ export const useMapSearch = () => { } : emptyPimsFeatureCollection, pimsLiteFeatures: emptyPimsLiteFeatureCollection, - fullyAttributedFeatures: validPmbcFeatures + fullyAttributedFeatures: validPmbcFeatures?.length ? { type: attributedFeatures.type, bbox: attributedFeatures.bbox, @@ -493,10 +493,10 @@ export const useMapSearch = () => { highwayPlanFeatures: emptyHighwayFeatures, }; - if (validPmbcFeatures.length === 0 && validPimsFeatures.length === 0) { + if (validPmbcFeatures?.length === 0 && validPimsFeatures?.length === 0) { toast.info('No search results found'); } else { - toast.info(`${validPmbcFeatures.length + validPimsFeatures.length} properties found`); + toast.info(`${validPmbcFeatures?.length + validPimsFeatures?.length} properties found`); } } catch (error) { toast.error((error as Error).message, { autoClose: 7000 }); @@ -550,7 +550,7 @@ export const useMapSearch = () => { pimsLiteFeatures: { type: pidPinInventoryData.type, bbox: pidPinInventoryData.bbox, - features: validFeatures.map(vf => ({ + features: validFeatures?.map(vf => ({ type: vf.type, geometry: vf.geometry ?? vf?.properties?.LOCATION, id: vf.id, diff --git a/source/frontend/src/components/maps/leaflet/Control/AdvancedFilter/__snapshots__/FilterContentForm.test.tsx.snap b/source/frontend/src/components/maps/leaflet/Control/AdvancedFilter/__snapshots__/FilterContentForm.test.tsx.snap index d125bc21c1..b9c29d7c74 100644 --- a/source/frontend/src/components/maps/leaflet/Control/AdvancedFilter/__snapshots__/FilterContentForm.test.tsx.snap +++ b/source/frontend/src/components/maps/leaflet/Control/AdvancedFilter/__snapshots__/FilterContentForm.test.tsx.snap @@ -334,7 +334,6 @@ exports[`FilterContentForm component > renders as expected 1`] = ` >
Show Ownership
@@ -620,7 +619,6 @@ exports[`FilterContentForm component > renders as expected 1`] = ` >
Project
@@ -733,7 +731,6 @@ exports[`FilterContentForm component > renders as expected 1`] = ` >
Tenure
@@ -1124,7 +1121,6 @@ exports[`FilterContentForm component > renders as expected 1`] = ` >
Lease / Licence
@@ -1752,7 +1748,6 @@ exports[`FilterContentForm component > renders as expected 1`] = ` >
Anomaly
diff --git a/source/frontend/src/components/maps/leaflet/Control/LayersControl/__snapshots__/LayersMenu.test.tsx.snap b/source/frontend/src/components/maps/leaflet/Control/LayersControl/__snapshots__/LayersMenu.test.tsx.snap index 721e00d763..9027e4067d 100644 --- a/source/frontend/src/components/maps/leaflet/Control/LayersControl/__snapshots__/LayersMenu.test.tsx.snap +++ b/source/frontend/src/components/maps/leaflet/Control/LayersControl/__snapshots__/LayersMenu.test.tsx.snap @@ -149,7 +149,6 @@ exports[`LayersMenu View > renders as expected 1`] = ` >
PIMS
@@ -405,7 +404,6 @@ exports[`LayersMenu View > renders as expected 1`] = ` >
External
diff --git a/source/frontend/src/components/maps/leaflet/Control/Search/SearchContainer.tsx b/source/frontend/src/components/maps/leaflet/Control/Search/SearchContainer.tsx index 126ca97726..42b227f7c8 100644 --- a/source/frontend/src/components/maps/leaflet/Control/Search/SearchContainer.tsx +++ b/source/frontend/src/components/maps/leaflet/Control/Search/SearchContainer.tsx @@ -40,6 +40,7 @@ export const SearchContainer: React.FC = ({ View }) => { const pathGenerator = usePathGenerator(); const { findDistrict, findRegion } = useAdminBoundaryMapLayer(); + const [isPimsActive, setIsPimsActive] = useState(false); const handleMapFilterChange = (filter: IPropertyFilter) => { if (['coordinates', 'name', 'address'].includes(filter.searchBy)) { @@ -70,23 +71,43 @@ export const SearchContainer: React.FC = ({ View }) => { // Base dataset (no region/district yet) const baseDatasets = useMemo(() => { - return ( - mapFeatureData?.fullyAttributedFeatures.features.map(pmbcParcel => { - const center = getFeatureBoundedCenter(pmbcParcel); - return { - parcelFeature: pmbcParcel, - pimsFeature: null, - location: { lat: center[1], lng: center[0] }, - regionFeature: null, - fileLocation: null, - fileBoundary: null, - districtFeature: null, - municipalityFeature: null, - selectingComponentId: null, - }; - }) ?? [] - ); - }, [mapFeatureData?.fullyAttributedFeatures?.features]); + if (isPimsActive) { + return ( + mapFeatureData?.pimsFeatures.features.map(pimsParcel => { + const center = getFeatureBoundedCenter(pimsParcel); + return { + parcelFeature: null, + pimsFeature: pimsParcel, + location: { lat: center[1], lng: center[0] }, + regionFeature: null, + fileLocation: null, + fileBoundary: null, + districtFeature: null, + municipalityFeature: null, + selectingComponentId: null, + }; + }) ?? [] + ); + } else { + return ( + mapFeatureData?.fullyAttributedFeatures.features.map(pmbcParcel => { + const center = getFeatureBoundedCenter(pmbcParcel); + return { + parcelFeature: pmbcParcel, + pimsFeature: null, + location: + exists(center) && center.length >= 2 ? { lat: center[1], lng: center[0] } : null, + regionFeature: null, + fileLocation: null, + fileBoundary: null, + districtFeature: null, + municipalityFeature: null, + selectingComponentId: null, + }; + }) ?? [] + ); + } + }, [mapFeatureData, isPimsActive]); // Enrich dataset with region/district info const [selectedFeatureDatasets, setSelectedFeatureDatasets] = useState( @@ -169,6 +190,7 @@ export const SearchContainer: React.FC = ({ View }) => { propertyFilter={mapSearchCriteria ?? defaultPropertyFilter} onFilterChange={handleMapFilterChange} searchResult={mapFeatureData} + selectedFeatureDatasets={selectedFeatureDatasets} canAddToOpenFile={isEditPropertiesMode} onCreateResearchFile={onCreateResearchFile} onCreateAcquisitionFile={onCreateAcquisitionFile} @@ -176,6 +198,7 @@ export const SearchContainer: React.FC = ({ View }) => { onCreateLeaseFile={onCreateLeaseFile} onCreateManagementFile={onCreateManagementFile} onAddToOpenFile={onAddToOpenFile} + setIsPimsActive={setIsPimsActive} /> ); }; diff --git a/source/frontend/src/components/maps/leaflet/Control/Search/SearchView.tsx b/source/frontend/src/components/maps/leaflet/Control/Search/SearchView.tsx index c9d30e8fc5..4daccf30a2 100644 --- a/source/frontend/src/components/maps/leaflet/Control/Search/SearchView.tsx +++ b/source/frontend/src/components/maps/leaflet/Control/Search/SearchView.tsx @@ -10,6 +10,7 @@ import LeaseIcon from '@/assets/images/lease-icon.svg?react'; import ManagementIcon from '@/assets/images/management-icon.svg?react'; import ResearchIcon from '@/assets/images/research-icon.svg?react'; import { MapFeatureData } from '@/components/common/mapFSM/models'; +import { SelectedFeatureDataset } from '@/components/common/mapFSM/useLocationFeatureLoader'; import MoreOptionsMenu, { MenuOption } from '@/components/common/MoreOptionsMenu'; import { Section } from '@/components/common/Section/Section'; import { SimpleSectionHeader } from '@/components/common/SimpleSectionHeader'; @@ -23,7 +24,6 @@ import { ParcelDataset } from '@/features/properties/parcelList/models'; import { ParcelListContainer } from '@/features/properties/parcelList/ParcelListContainer'; import { ParcelListView } from '@/features/properties/parcelList/ParcelListView'; import useKeycloakWrapper from '@/hooks/useKeycloakWrapper'; -import { PMBC_FullyAttributed_Feature_Properties } from '@/models/layers/parcelMapBC'; import { PIMS_Property_View } from '@/models/layers/pimsPropertyView'; import { exists } from '@/utils'; import { isStrataCommonProperty } from '@/utils/propertyUtils'; @@ -34,6 +34,7 @@ export interface ISearchViewProps { onFilterChange: (filter: IPropertyFilter) => void; propertyFilter: IPropertyFilter; searchResult: MapFeatureData; + selectedFeatureDatasets?: SelectedFeatureDataset[]; canAddToOpenFile?: boolean; onCreateResearchFile: () => void; onCreateAcquisitionFile: () => void; @@ -41,6 +42,7 @@ export interface ISearchViewProps { onCreateLeaseFile: () => void; onCreateManagementFile: () => void; onAddToOpenFile: () => void; + setIsPimsActive: (value: boolean) => void; } interface PropertyProjection { @@ -54,31 +56,29 @@ interface PropertyProjection { export const SearchView: React.FC = props => { const keycloak = useKeycloakWrapper(); - const groupedFeatures = chain(props.searchResult?.fullyAttributedFeatures.features) - .groupBy(feature => feature?.properties?.PLAN_NUMBER) - .map( - planGroup => - planGroup - ?.map>(x => ({ - pid: x.properties.PID_FORMATTED, - pin: exists(x.properties.PIN) ? String(x.properties.PIN) : null, - isStrataLot: isStrataCommonProperty(x), - feature: x, - plan: x.properties.PLAN_NUMBER, - })) - .sort((a, b) => { - if (a.isStrataLot === b.isStrataLot) return 0; - if (a.isStrataLot) return -1; - if (b.isStrataLot) return 1; - return 0; - }) ?? [], - ); + const propertyProjections = useMemo(() => { + const fallbackFeatures = props.searchResult?.fullyAttributedFeatures?.features ?? []; + + const baseParcels = props.selectedFeatureDatasets?.length + ? props.selectedFeatureDatasets.map(dataset => + ParcelDataset.fromSelectedFeatureDataset(dataset), + ) + : fallbackFeatures.map(feature => ParcelDataset.fromFullyAttributedFeature(feature)); - const propertyProjections = - groupedFeatures + return chain(baseParcels) + .groupBy(parcel => parcel.pmbcFeature?.properties?.PLAN_NUMBER) + .map(group => + group.toSorted((a, b) => { + const aIsStrata = a.pmbcFeature ? isStrataCommonProperty(a.pmbcFeature) : false; + const bIsStrata = b.pmbcFeature ? isStrataCommonProperty(b.pmbcFeature) : false; + + if (aIsStrata === bIsStrata) return 0; + return aIsStrata ? -1 : 1; + }), + ) .value() - .flatMap(x => x) - .map(x => ParcelDataset.fromFullyAttributedFeature(x.feature)) ?? []; + .flat(); + }, [props.searchResult, props.selectedFeatureDatasets]); const pimsGroupedFeatures = chain(props.searchResult?.pimsFeatures.features) .groupBy(feature => feature?.properties?.SURVEY_PLAN_NUMBER) @@ -184,7 +184,11 @@ export const SearchView: React.FC = props => { className="my-0 py-0" header={ - + props.setIsPimsActive(false)} + /> } isCollapsable @@ -197,7 +201,11 @@ export const SearchView: React.FC = props => { className="my-0 py-0" header={ - + props.setIsPimsActive(true)} + /> } isCollapsable diff --git a/source/frontend/src/components/maps/leaflet/Control/Search/__snapshots__/SearchContainer.test.tsx.snap b/source/frontend/src/components/maps/leaflet/Control/Search/__snapshots__/SearchContainer.test.tsx.snap index 2a4c5e7dbd..67131cdb22 100644 --- a/source/frontend/src/components/maps/leaflet/Control/Search/__snapshots__/SearchContainer.test.tsx.snap +++ b/source/frontend/src/components/maps/leaflet/Control/Search/__snapshots__/SearchContainer.test.tsx.snap @@ -511,7 +511,6 @@ exports[`SearchContainer component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected when provided no p >
Search for a property
diff --git a/source/frontend/src/components/propertySelector/search/PropertySelectorSearchContainer.tsx b/source/frontend/src/components/propertySelector/search/PropertySelectorSearchContainer.tsx index ab1a304edb..38fe266107 100644 --- a/source/frontend/src/components/propertySelector/search/PropertySelectorSearchContainer.tsx +++ b/source/frontend/src/components/propertySelector/search/PropertySelectorSearchContainer.tsx @@ -277,7 +277,7 @@ export const featureToLocationFeatureDataset = (feature: Feature, pimsFeature: null, - location: { lat: center[1], lng: center[0] }, + location: exists(center) && center.length >= 2 ? { lat: center[1], lng: center[0] } : null, regionFeature: null, fileLocation: null, fileBoundary: null, diff --git a/source/frontend/src/components/propertySelector/search/__snapshots__/PropertySearchSelectorFormView.test.tsx.snap b/source/frontend/src/components/propertySelector/search/__snapshots__/PropertySearchSelectorFormView.test.tsx.snap index 2978853224..fcf6577ba3 100644 --- a/source/frontend/src/components/propertySelector/search/__snapshots__/PropertySearchSelectorFormView.test.tsx.snap +++ b/source/frontend/src/components/propertySelector/search/__snapshots__/PropertySearchSelectorFormView.test.tsx.snap @@ -268,7 +268,6 @@ exports[`PropertySearchSelectorFormView component > renders as expected when pro >
Search for a property
diff --git a/source/frontend/src/features/contacts/contact/create/Organization/__snapshots__/CreateOrganizationForm.test.tsx.snap b/source/frontend/src/features/contacts/contact/create/Organization/__snapshots__/CreateOrganizationForm.test.tsx.snap index a1a8f222d1..8a22d598b7 100644 --- a/source/frontend/src/features/contacts/contact/create/Organization/__snapshots__/CreateOrganizationForm.test.tsx.snap +++ b/source/frontend/src/features/contacts/contact/create/Organization/__snapshots__/CreateOrganizationForm.test.tsx.snap @@ -330,7 +330,6 @@ exports[`CreateOrganizationForm > renders as expected 1`] = ` >
Contact Details
@@ -439,7 +438,6 @@ exports[`CreateOrganizationForm > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Mailing Address
@@ -1000,7 +997,6 @@ exports[`CreateOrganizationForm > renders as expected 1`] = ` >
Property Address
@@ -1258,7 +1254,6 @@ exports[`CreateOrganizationForm > renders as expected 1`] = ` >
Billing Address
@@ -1516,7 +1511,6 @@ exports[`CreateOrganizationForm > renders as expected 1`] = ` >
Comments
diff --git a/source/frontend/src/features/contacts/contact/create/Person/__snapshots__/CreatePersonForm.test.tsx.snap b/source/frontend/src/features/contacts/contact/create/Person/__snapshots__/CreatePersonForm.test.tsx.snap index 9fe9fccb5e..8c3cdf5309 100644 --- a/source/frontend/src/features/contacts/contact/create/Person/__snapshots__/CreatePersonForm.test.tsx.snap +++ b/source/frontend/src/features/contacts/contact/create/Person/__snapshots__/CreatePersonForm.test.tsx.snap @@ -343,7 +343,6 @@ exports[`CreatePersonForm > renders as expected 1`] = ` >
Contact Details
@@ -552,7 +551,6 @@ exports[`CreatePersonForm > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
Property Address
@@ -1403,7 +1399,6 @@ exports[`CreatePersonForm > renders as expected 1`] = ` >
Billing Address
@@ -1661,7 +1656,6 @@ exports[`CreatePersonForm > renders as expected 1`] = ` >
Comments
diff --git a/source/frontend/src/features/contacts/contact/create/__snapshots__/CreateContactContainer.test.tsx.snap b/source/frontend/src/features/contacts/contact/create/__snapshots__/CreateContactContainer.test.tsx.snap index 93599c94ea..a83c44414b 100644 --- a/source/frontend/src/features/contacts/contact/create/__snapshots__/CreateContactContainer.test.tsx.snap +++ b/source/frontend/src/features/contacts/contact/create/__snapshots__/CreateContactContainer.test.tsx.snap @@ -570,7 +570,6 @@ exports[`CreateContactContainer component > should render as expected 1`] = ` >
Contact Details
@@ -779,7 +778,6 @@ exports[`CreateContactContainer component > should render as expected 1`] = ` >
should render as expected 1`] = ` >
should render as expected 1`] = ` >
Property Address
@@ -1630,7 +1626,6 @@ exports[`CreateContactContainer component > should render as expected 1`] = ` >
Billing Address
@@ -1888,7 +1883,6 @@ exports[`CreateContactContainer component > should render as expected 1`] = ` >
Comments
diff --git a/source/frontend/src/features/contacts/contact/edit/Organization/__snapshots__/UpdateOrganizationForm.test.tsx.snap b/source/frontend/src/features/contacts/contact/edit/Organization/__snapshots__/UpdateOrganizationForm.test.tsx.snap index f8488e757b..0bbcc2e2ee 100644 --- a/source/frontend/src/features/contacts/contact/edit/Organization/__snapshots__/UpdateOrganizationForm.test.tsx.snap +++ b/source/frontend/src/features/contacts/contact/edit/Organization/__snapshots__/UpdateOrganizationForm.test.tsx.snap @@ -387,7 +387,6 @@ exports[`UpdateOrganizationForm > renders as expected 1`] = ` >
Contact Details
@@ -496,7 +495,6 @@ exports[`UpdateOrganizationForm > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Individual Contacts
@@ -859,7 +856,6 @@ exports[`UpdateOrganizationForm > renders as expected 1`] = ` >
Mailing Address
@@ -1117,7 +1113,6 @@ exports[`UpdateOrganizationForm > renders as expected 1`] = ` >
Property Address
@@ -1375,7 +1370,6 @@ exports[`UpdateOrganizationForm > renders as expected 1`] = ` >
Billing Address
@@ -1633,7 +1627,6 @@ exports[`UpdateOrganizationForm > renders as expected 1`] = ` >
Comments
diff --git a/source/frontend/src/features/contacts/contact/edit/Person/__snapshots__/UpdatePersonForm.test.tsx.snap b/source/frontend/src/features/contacts/contact/edit/Person/__snapshots__/UpdatePersonForm.test.tsx.snap index 24ccca45bd..d795900a07 100644 --- a/source/frontend/src/features/contacts/contact/edit/Person/__snapshots__/UpdatePersonForm.test.tsx.snap +++ b/source/frontend/src/features/contacts/contact/edit/Person/__snapshots__/UpdatePersonForm.test.tsx.snap @@ -416,7 +416,6 @@ exports[`UpdatePersonForm > renders as expected 1`] = ` >
Contact Details
@@ -626,7 +625,6 @@ exports[`UpdatePersonForm > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
Property Address
@@ -1476,7 +1472,6 @@ exports[`UpdatePersonForm > renders as expected 1`] = ` >
Billing Address
@@ -1734,7 +1729,6 @@ exports[`UpdatePersonForm > renders as expected 1`] = ` >
Comments
diff --git a/source/frontend/src/features/contacts/contact/edit/__snapshots__/UpdateContactContainer.test.tsx.snap b/source/frontend/src/features/contacts/contact/edit/__snapshots__/UpdateContactContainer.test.tsx.snap index c50c7265dc..cc35813bcb 100644 --- a/source/frontend/src/features/contacts/contact/edit/__snapshots__/UpdateContactContainer.test.tsx.snap +++ b/source/frontend/src/features/contacts/contact/edit/__snapshots__/UpdateContactContainer.test.tsx.snap @@ -585,7 +585,6 @@ exports[`UpdateContactContainer > renders as expected 1`] = ` >
Contact Details
@@ -792,7 +791,6 @@ exports[`UpdateContactContainer > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
Property Address
@@ -1643,7 +1639,6 @@ exports[`UpdateContactContainer > renders as expected 1`] = ` >
Billing Address
@@ -1901,7 +1896,6 @@ exports[`UpdateContactContainer > renders as expected 1`] = ` >
Comments
diff --git a/source/frontend/src/features/documents/documentDetail/__snapshots__/DocumentDetailContainer.test.tsx.snap b/source/frontend/src/features/documents/documentDetail/__snapshots__/DocumentDetailContainer.test.tsx.snap index 66368685e7..b02819e1c0 100644 --- a/source/frontend/src/features/documents/documentDetail/__snapshots__/DocumentDetailContainer.test.tsx.snap +++ b/source/frontend/src/features/documents/documentDetail/__snapshots__/DocumentDetailContainer.test.tsx.snap @@ -312,7 +312,6 @@ exports[`DocumentDetailContainer component > renders the underlying form 1`] = ` >
Document Information renders as expected 1`] = ` >
Document Information renders as expected 1`] = ` >
Document Information renders as expected 1`] = ` >
renders as expected 1`] = ` >
Original Agreement
@@ -1019,7 +1018,6 @@ exports[`AddLeaseContainer component > renders as expected 1`] = ` >
Properties to include in this file:
@@ -1149,7 +1147,6 @@ exports[`AddLeaseContainer component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Administration
@@ -2254,7 +2250,6 @@ exports[`AddLeaseContainer component > renders as expected 1`] = ` >
Lease & Licence Team
@@ -2288,7 +2283,6 @@ exports[`AddLeaseContainer component > renders as expected 1`] = ` >
Fee Determination
diff --git a/source/frontend/src/features/leases/add/__snapshots__/AdministrationSubForm.test.tsx.snap b/source/frontend/src/features/leases/add/__snapshots__/AdministrationSubForm.test.tsx.snap index 3c4019bc0f..37b730d1df 100644 --- a/source/frontend/src/features/leases/add/__snapshots__/AdministrationSubForm.test.tsx.snap +++ b/source/frontend/src/features/leases/add/__snapshots__/AdministrationSubForm.test.tsx.snap @@ -133,7 +133,6 @@ exports[`AdministrationSubForm component > renders as expected 1`] = ` >
Administration
diff --git a/source/frontend/src/features/leases/add/__snapshots__/FeeDeterminationSubForm.test.tsx.snap b/source/frontend/src/features/leases/add/__snapshots__/FeeDeterminationSubForm.test.tsx.snap index 6c2921d335..b966d7238f 100644 --- a/source/frontend/src/features/leases/add/__snapshots__/FeeDeterminationSubForm.test.tsx.snap +++ b/source/frontend/src/features/leases/add/__snapshots__/FeeDeterminationSubForm.test.tsx.snap @@ -66,7 +66,6 @@ exports[`LeaseFeeDeterminationSubForm component > renders as expected 1`] = ` >
Fee Determination
diff --git a/source/frontend/src/features/leases/add/__snapshots__/LeaseDetailSubForm.test.tsx.snap b/source/frontend/src/features/leases/add/__snapshots__/LeaseDetailSubForm.test.tsx.snap index ca9d62bfd6..6e4de69fba 100644 --- a/source/frontend/src/features/leases/add/__snapshots__/LeaseDetailSubForm.test.tsx.snap +++ b/source/frontend/src/features/leases/add/__snapshots__/LeaseDetailSubForm.test.tsx.snap @@ -69,7 +69,6 @@ exports[`LeaseDetailSubForm component > renders as expected 1`] = ` >
Original Agreement
diff --git a/source/frontend/src/features/leases/detail/LeasePages/deposits/__snapshots__/DepositsContainer.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/deposits/__snapshots__/DepositsContainer.test.tsx.snap index fa1c019140..cd9cf543a0 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/deposits/__snapshots__/DepositsContainer.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/deposits/__snapshots__/DepositsContainer.test.tsx.snap @@ -32,7 +32,6 @@ exports[`DepositsContainer > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Deposits Returned
@@ -370,7 +368,6 @@ exports[`DepositsContainer > renders as expected 1`] = ` >
Deposit Comments diff --git a/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositNotes/__snapshots__/DepositNotes.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositNotes/__snapshots__/DepositNotes.test.tsx.snap index bb52e2d9d0..2f30633b2f 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositNotes/__snapshots__/DepositNotes.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositNotes/__snapshots__/DepositNotes.test.tsx.snap @@ -38,7 +38,6 @@ exports[`DepositNotes component > renders as expected 1`] = ` >
Deposit Comments diff --git a/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositsReceivedContainer/__snapshots__/DepositsReceivedContainer.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositsReceivedContainer/__snapshots__/DepositsReceivedContainer.test.tsx.snap index f19cd0e54e..d54b8da4ec 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositsReceivedContainer/__snapshots__/DepositsReceivedContainer.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/deposits/components/DepositsReceivedContainer/__snapshots__/DepositsReceivedContainer.test.tsx.snap @@ -42,7 +42,6 @@ exports[`DepositsReceivedContainer component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Deposits Returned
diff --git a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailAdministration.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailAdministration.test.tsx.snap index e6c646bca4..62bb2a59af 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailAdministration.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailAdministration.test.tsx.snap @@ -49,7 +49,6 @@ exports[`DetailAdministration component > renders a complete lease as expected 1 >
Administration
@@ -365,7 +364,6 @@ exports[`DetailAdministration component > renders minimally as expected 1`] = ` >
Administration
diff --git a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailFeeDetermination.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailFeeDetermination.test.tsx.snap index 81782adb7e..1561b873fd 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailFeeDetermination.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/DetailFeeDetermination.test.tsx.snap @@ -54,7 +54,6 @@ exports[`DetailFeeDetermination component > renders a complete lease as expected >
Fee Determination
@@ -279,7 +278,6 @@ exports[`DetailFeeDetermination component > renders minimally as expected 1`] = >
Fee Determination
diff --git a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseDetailsView.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseDetailsView.test.tsx.snap index 3f51cd6572..eb80abc190 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseDetailsView.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseDetailsView.test.tsx.snap @@ -43,7 +43,6 @@ exports[`LeaseDetailView component > renders minimally as expected 1`] = ` >
Original Agreement
diff --git a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseTeamView.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseTeamView.test.tsx.snap index 570c8f7589..e2a0fb5717 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseTeamView.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/LeaseTeamView.test.tsx.snap @@ -32,7 +32,6 @@ exports[`LeaseTeamView component > renders empty lease team 1`] = ` >
Lease & Licence Team
diff --git a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/PropertiesInformation.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/PropertiesInformation.test.tsx.snap index 021b832be5..4b26f4568d 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/PropertiesInformation.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/PropertiesInformation.test.tsx.snap @@ -69,7 +69,6 @@ exports[`LeasePropertiesInformation component > renders as expected 1`] = ` >
Property Information
diff --git a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/UpdateLeaseForm.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/UpdateLeaseForm.test.tsx.snap index b73a425d7e..feb540a211 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/UpdateLeaseForm.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/details/__snapshots__/UpdateLeaseForm.test.tsx.snap @@ -375,7 +375,6 @@ exports[`UpdateLeaseForm component > renders as expected 1`] = ` >
Original Agreement
@@ -759,7 +758,6 @@ exports[`UpdateLeaseForm component > renders as expected 1`] = ` >
Renewal Options
@@ -792,7 +790,6 @@ exports[`UpdateLeaseForm component > renders as expected 1`] = ` >
Administration
@@ -1821,7 +1818,6 @@ exports[`UpdateLeaseForm component > renders as expected 1`] = ` >
Lease & Licence Team
@@ -1855,7 +1851,6 @@ exports[`UpdateLeaseForm component > renders as expected 1`] = ` >
Fee Determination
diff --git a/source/frontend/src/features/leases/detail/LeasePages/documents/__snapshots__/DocumentsPage.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/documents/__snapshots__/DocumentsPage.test.tsx.snap index ee6186f227..bc606bc813 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/documents/__snapshots__/DocumentsPage.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/documents/__snapshots__/DocumentsPage.test.tsx.snap @@ -313,7 +313,6 @@ exports[`Lease Documents Page > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Required Coverage
@@ -154,7 +153,6 @@ exports[`Edit Lease Insurance > renders as expected 1`] = ` >
Home Insurance
@@ -382,7 +380,6 @@ exports[`Lease Insurance > renders as expected 1`] = ` >
Required insurance
@@ -414,7 +411,6 @@ exports[`Lease Insurance > renders as expected 1`] = ` >
Home Insurance
diff --git a/source/frontend/src/features/leases/detail/LeasePages/insurance/edit/__snapshots__/EditInsuranceContainer.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/insurance/edit/__snapshots__/EditInsuranceContainer.test.tsx.snap index 4160790973..c90c0c5d4c 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/insurance/edit/__snapshots__/EditInsuranceContainer.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/insurance/edit/__snapshots__/EditInsuranceContainer.test.tsx.snap @@ -73,7 +73,6 @@ exports[`Edit Lease Insurance > renders as expected 1`] = ` >
Required Coverage
@@ -154,7 +153,6 @@ exports[`Edit Lease Insurance > renders as expected 1`] = ` >
Home Insurance
diff --git a/source/frontend/src/features/leases/detail/LeasePages/payment/__snapshots__/PeriodPaymentsContainer.test.tsx.snap b/source/frontend/src/features/leases/detail/LeasePages/payment/__snapshots__/PeriodPaymentsContainer.test.tsx.snap index bbfef6628b..ee2335b790 100644 --- a/source/frontend/src/features/leases/detail/LeasePages/payment/__snapshots__/PeriodPaymentsContainer.test.tsx.snap +++ b/source/frontend/src/features/leases/detail/LeasePages/payment/__snapshots__/PeriodPaymentsContainer.test.tsx.snap @@ -276,7 +276,6 @@ exports[`PaymentsView component > renders as expected 1`] = ` >
renders with data as expected 1`] = ` >
renders as expected 1`] = ` >
renders with data as expected 1`] >
renders as expected 1`] = ` >
renders with data as expected 1`] = ` >
renders as expected 1`] = ` >
renders with data as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
Assignee
@@ -569,7 +567,6 @@ exports[`Tenant component > renders as expected 1`] = ` >
Property manager
@@ -605,7 +602,6 @@ exports[`Tenant component > renders as expected 1`] = ` >
Representative
@@ -641,7 +637,6 @@ exports[`Tenant component > renders as expected 1`] = ` >
Tenant
@@ -677,7 +672,6 @@ exports[`Tenant component > renders as expected 1`] = ` >
Unknown
diff --git a/source/frontend/src/features/leases/shared/propertyPicker/__snapshots__/LeasePropertySelector.test.tsx.snap b/source/frontend/src/features/leases/shared/propertyPicker/__snapshots__/LeasePropertySelector.test.tsx.snap index 499bc696b9..b383371196 100644 --- a/source/frontend/src/features/leases/shared/propertyPicker/__snapshots__/LeasePropertySelector.test.tsx.snap +++ b/source/frontend/src/features/leases/shared/propertyPicker/__snapshots__/LeasePropertySelector.test.tsx.snap @@ -462,7 +462,6 @@ exports[`LeasePropertySelector component > renders as expected 1`] = ` >
Properties to include in this file:
@@ -592,7 +591,6 @@ exports[`LeasePropertySelector component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Project
@@ -1352,7 +1351,6 @@ exports[`AcquisitionView component > renders as expected 1`] = ` >
Progress Statuses
@@ -1535,7 +1533,6 @@ exports[`AcquisitionView component > renders as expected 1`] = ` >
Schedule
@@ -1674,7 +1671,6 @@ exports[`AcquisitionView component > renders as expected 1`] = ` >
Acquisition Details
@@ -1844,7 +1840,6 @@ exports[`AcquisitionView component > renders as expected 1`] = ` >
Acquisition Team
@@ -1948,7 +1943,6 @@ exports[`AcquisitionView component > renders as expected 1`] = ` >
Owner Information
@@ -2422,7 +2416,6 @@ Canada >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AcquisitionPropertiesSubForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AcquisitionPropertiesSubForm.test.tsx.snap index 623a70db1b..d44a450743 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AcquisitionPropertiesSubForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AcquisitionPropertiesSubForm.test.tsx.snap @@ -472,7 +472,6 @@ exports[`AcquisitionProperties component > renders as expected 1`] = ` >
Sub-interest file > renders as expe >
Project
@@ -933,7 +932,6 @@ exports[`AddAcquisitionContainer component > Sub-interest file > renders as expe >
Progress Statuses
@@ -1389,7 +1387,6 @@ exports[`AddAcquisitionContainer component > Sub-interest file > renders as expe >
Schedule
@@ -1643,7 +1640,6 @@ exports[`AddAcquisitionContainer component > Sub-interest file > renders as expe >
Properties to include in this sub-file:
@@ -1671,7 +1667,6 @@ exports[`AddAcquisitionContainer component > Sub-interest file > renders as expe >
Sub-interest file > renders as expe >
Acquisition Details
@@ -2291,7 +2285,6 @@ exports[`AddAcquisitionContainer component > Sub-interest file > renders as expe >
Acquisition Team
@@ -2707,7 +2700,6 @@ exports[`AddAcquisitionContainer component > Sub-interest file > renders as expe >
Sub-Interest
@@ -2922,7 +2914,6 @@ exports[`AddAcquisitionContainer component > Sub-interest file > renders as expe >
Notice of Claim
@@ -3715,7 +3706,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
Project
@@ -3918,7 +3908,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
Progress Statuses
@@ -4374,7 +4363,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
Schedule
@@ -4628,7 +4616,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
Properties to include in this file:
@@ -4656,7 +4643,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Acquisition Details
@@ -5158,7 +5143,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
Acquisition Team
@@ -5192,7 +5176,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
Owners
@@ -5407,7 +5390,6 @@ exports[`AddAcquisitionContainer component > renders as expected 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AddAcquisitionForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AddAcquisitionForm.test.tsx.snap index a6fd729f99..60df676c57 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AddAcquisitionForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/add/__snapshots__/AddAcquisitionForm.test.tsx.snap @@ -398,7 +398,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Project
@@ -609,7 +608,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Progress Statuses
@@ -1065,7 +1063,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Schedule
@@ -1319,7 +1316,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Properties to include in this sub-file:
@@ -1347,7 +1343,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Sub-interest files > renders as expected >
Acquisition Details
@@ -1960,7 +1954,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Acquisition Team
@@ -1994,7 +1987,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Sub-Interest
@@ -2209,7 +2201,6 @@ exports[`AddAcquisitionForm component > Sub-interest files > renders as expected >
Notice of Claim
@@ -2701,7 +2692,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
Project
@@ -2904,7 +2894,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
Progress Statuses
@@ -3360,7 +3349,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
Schedule
@@ -3614,7 +3602,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
Properties to include in this file:
@@ -3642,7 +3629,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Acquisition Details
@@ -4137,7 +4122,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
Acquisition Team
@@ -4171,7 +4155,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
Owners
@@ -4386,7 +4369,6 @@ exports[`AddAcquisitionForm component > renders as expected 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/acquisition/tabs/__snapshots__/AcquisitionFileTabs.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/tabs/__snapshots__/AcquisitionFileTabs.test.tsx.snap index 7c9a7e7f4b..49b18de99e 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/tabs/__snapshots__/AcquisitionFileTabs.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/tabs/__snapshots__/AcquisitionFileTabs.test.tsx.snap @@ -198,7 +198,6 @@ exports[`AcquisitionFileTabs component > matches snapshot 1`] = ` >
Project
@@ -272,7 +271,6 @@ exports[`AcquisitionFileTabs component > matches snapshot 1`] = ` >
Progress Statuses
@@ -455,7 +453,6 @@ exports[`AcquisitionFileTabs component > matches snapshot 1`] = ` >
Schedule
@@ -594,7 +591,6 @@ exports[`AcquisitionFileTabs component > matches snapshot 1`] = ` >
Acquisition Details
@@ -764,7 +760,6 @@ exports[`AcquisitionFileTabs component > matches snapshot 1`] = ` >
Acquisition Team
@@ -868,7 +863,6 @@ exports[`AcquisitionFileTabs component > matches snapshot 1`] = ` >
Owner Information
@@ -1034,7 +1028,6 @@ exports[`AcquisitionFileTabs component > matches snapshot 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/common/__snapshots__/UpdateAcquisitionAgreementForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/common/__snapshots__/UpdateAcquisitionAgreementForm.test.tsx.snap index 24ac09e578..df5dd01cf0 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/common/__snapshots__/UpdateAcquisitionAgreementForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/common/__snapshots__/UpdateAcquisitionAgreementForm.test.tsx.snap @@ -343,7 +343,6 @@ exports[`UpdateAcquisitionAgreementView component > renders as expected 1`] = ` >
Agreement Details
diff --git a/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/detail/__snapshots__/AgreementView.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/detail/__snapshots__/AgreementView.test.tsx.snap index a1495dc7da..fac45c14b9 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/detail/__snapshots__/AgreementView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/tabs/agreement/detail/__snapshots__/AgreementView.test.tsx.snap @@ -328,7 +328,6 @@ exports[`AgreementView component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
matches snapshot 1`] = ` >
Project
@@ -155,7 +154,6 @@ exports[`AcquisitionSummaryView component > matches snapshot 1`] = ` >
Progress Statuses
@@ -338,7 +336,6 @@ exports[`AcquisitionSummaryView component > matches snapshot 1`] = ` >
Schedule
@@ -477,7 +474,6 @@ exports[`AcquisitionSummaryView component > matches snapshot 1`] = ` >
Acquisition Details
@@ -647,7 +643,6 @@ exports[`AcquisitionSummaryView component > matches snapshot 1`] = ` >
Acquisition Team
@@ -751,7 +746,6 @@ exports[`AcquisitionSummaryView component > matches snapshot 1`] = ` >
Owner Information
@@ -1227,7 +1221,6 @@ Canada >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/acquisition/tabs/fileDetails/update/__snapshots__/UpdateAcquisitionForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/tabs/fileDetails/update/__snapshots__/UpdateAcquisitionForm.test.tsx.snap index 0d4ec5f593..e6b7fec106 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/tabs/fileDetails/update/__snapshots__/UpdateAcquisitionForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/tabs/fileDetails/update/__snapshots__/UpdateAcquisitionForm.test.tsx.snap @@ -581,7 +581,6 @@ exports[`UpdateAcquisitionForm component > renders as expected 1`] = ` >
Project
@@ -807,7 +806,6 @@ exports[`UpdateAcquisitionForm component > renders as expected 1`] = ` >
Progress Statuses
@@ -1263,7 +1261,6 @@ exports[`UpdateAcquisitionForm component > renders as expected 1`] = ` >
Schedule
@@ -1517,7 +1514,6 @@ exports[`UpdateAcquisitionForm component > renders as expected 1`] = ` >
Acquisition Details
@@ -1849,7 +1845,6 @@ exports[`UpdateAcquisitionForm component > renders as expected 1`] = ` >
Acquisition Team
@@ -2265,7 +2260,6 @@ exports[`UpdateAcquisitionForm component > renders as expected 1`] = ` >
Owners
@@ -4081,7 +4075,6 @@ exports[`UpdateAcquisitionForm component > renders as expected 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/detail/__snapshots__/StakeHolderView.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/detail/__snapshots__/StakeHolderView.test.tsx.snap index 845f054eea..b961b5c299 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/detail/__snapshots__/StakeHolderView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/detail/__snapshots__/StakeHolderView.test.tsx.snap @@ -54,7 +54,6 @@ exports[`StakeHolderView component > renders as expected 1`] = ` >
Interests
@@ -359,7 +358,6 @@ exports[`StakeHolderView component > renders as expected 1`] = ` >
Non-interest Payees
diff --git a/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/update/__snapshots__/UpdateStakeHolderForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/update/__snapshots__/UpdateStakeHolderForm.test.tsx.snap index 4adf90ab98..03aaf0d5f0 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/update/__snapshots__/UpdateStakeHolderForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/tabs/stakeholders/update/__snapshots__/UpdateStakeHolderForm.test.tsx.snap @@ -404,7 +404,6 @@ exports[`UpdateStakeHolderForm component > renders as expected 1`] = ` >
Interests
@@ -1714,7 +1713,6 @@ exports[`UpdateStakeHolderForm component > renders as expected 1`] = ` >
Non-interest Payees
diff --git a/source/frontend/src/features/mapSideBar/acquisition/tabs/subFiles/__snapshots__/SubFileListView.test.tsx.snap b/source/frontend/src/features/mapSideBar/acquisition/tabs/subFiles/__snapshots__/SubFileListView.test.tsx.snap index a35502fe54..a60b17cf25 100644 --- a/source/frontend/src/features/mapSideBar/acquisition/tabs/subFiles/__snapshots__/SubFileListView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/acquisition/tabs/subFiles/__snapshots__/SubFileListView.test.tsx.snap @@ -78,7 +78,6 @@ exports[`SubFileListView component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
Financial Coding
@@ -868,7 +865,6 @@ exports[`Compensation Detail View Component > renders as expected 1`] = ` >
Payment
@@ -986,7 +982,6 @@ exports[`Compensation Detail View Component > renders as expected 1`] = ` >
Financial Activities
diff --git a/source/frontend/src/features/mapSideBar/compensation/list/__snapshots__/CompensationListView.test.tsx.snap b/source/frontend/src/features/mapSideBar/compensation/list/__snapshots__/CompensationListView.test.tsx.snap index ae71e969f8..86e6214791 100644 --- a/source/frontend/src/features/mapSideBar/compensation/list/__snapshots__/CompensationListView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/compensation/list/__snapshots__/CompensationListView.test.tsx.snap @@ -362,7 +362,6 @@ exports[`compensation list view > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Requisitions in this File (H120)
diff --git a/source/frontend/src/features/mapSideBar/compensation/update/__snapshots__/UpdateCompensationRequisitionForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/compensation/update/__snapshots__/UpdateCompensationRequisitionForm.test.tsx.snap index d3fdee7c12..8fd301b529 100644 --- a/source/frontend/src/features/mapSideBar/compensation/update/__snapshots__/UpdateCompensationRequisitionForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/compensation/update/__snapshots__/UpdateCompensationRequisitionForm.test.tsx.snap @@ -350,7 +350,6 @@ exports[`Compensation Requisition UpdateForm component > renders as expected 1`] >
Requisition Details
@@ -582,7 +581,6 @@ exports[`Compensation Requisition UpdateForm component > renders as expected 1`] >
renders as expected 1`] >
Financial Coding
@@ -1094,7 +1091,6 @@ exports[`Compensation Requisition UpdateForm component > renders as expected 1`] >
Payment
@@ -1416,7 +1412,6 @@ exports[`Compensation Requisition UpdateForm component > renders as expected 1`] >
Activities
diff --git a/source/frontend/src/features/mapSideBar/consolidation/__snapshots__/AddConsolidationView.test.tsx.snap b/source/frontend/src/features/mapSideBar/consolidation/__snapshots__/AddConsolidationView.test.tsx.snap index 7babb534d5..76c925e1b0 100644 --- a/source/frontend/src/features/mapSideBar/consolidation/__snapshots__/AddConsolidationView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/consolidation/__snapshots__/AddConsolidationView.test.tsx.snap @@ -657,7 +657,6 @@ exports[`Add Consolidation View > matches snapshot 1`] = ` >
Selected Parents
@@ -723,7 +722,6 @@ exports[`Add Consolidation View > matches snapshot 1`] = ` >
Selected Child
diff --git a/source/frontend/src/features/mapSideBar/disposition/__snapshots__/DispositionView.test.tsx.snap b/source/frontend/src/features/mapSideBar/disposition/__snapshots__/DispositionView.test.tsx.snap index f6f01cee85..452e3b3716 100644 --- a/source/frontend/src/features/mapSideBar/disposition/__snapshots__/DispositionView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/disposition/__snapshots__/DispositionView.test.tsx.snap @@ -1204,7 +1204,6 @@ exports[`DispositionView component > renders as expected 1`] = ` >
Project
@@ -1280,7 +1279,6 @@ exports[`DispositionView component > renders as expected 1`] = ` >
Schedule
@@ -1338,7 +1336,6 @@ exports[`DispositionView component > renders as expected 1`] = ` >
Disposition Details
@@ -1586,7 +1583,6 @@ exports[`DispositionView component > renders as expected 1`] = ` >
Disposition Team
diff --git a/source/frontend/src/features/mapSideBar/disposition/form/__snapshots__/DispositionPropertiesSubForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/disposition/form/__snapshots__/DispositionPropertiesSubForm.test.tsx.snap index 5988254898..a0345d6202 100644 --- a/source/frontend/src/features/mapSideBar/disposition/form/__snapshots__/DispositionPropertiesSubForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/disposition/form/__snapshots__/DispositionPropertiesSubForm.test.tsx.snap @@ -472,7 +472,6 @@ exports[`DispositionPropertiesSubForm component > renders as expected 1`] = ` >
matches snapshot 1`] = ` >
Project
@@ -278,7 +277,6 @@ exports[`DispositionFileTabs component > matches snapshot 1`] = ` >
Schedule
@@ -336,7 +334,6 @@ exports[`DispositionFileTabs component > matches snapshot 1`] = ` >
Disposition Details
@@ -584,7 +581,6 @@ exports[`DispositionFileTabs component > matches snapshot 1`] = ` >
Disposition Team
diff --git a/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/__snapshots__/DispositionSummaryView.test.tsx.snap b/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/__snapshots__/DispositionSummaryView.test.tsx.snap index 906546b0d4..98aeaab2b7 100644 --- a/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/__snapshots__/DispositionSummaryView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/__snapshots__/DispositionSummaryView.test.tsx.snap @@ -90,7 +90,6 @@ exports[`DispositionSummaryView component > matches snapshot 1`] = ` >
Project
@@ -166,7 +165,6 @@ exports[`DispositionSummaryView component > matches snapshot 1`] = ` >
Schedule
@@ -224,7 +222,6 @@ exports[`DispositionSummaryView component > matches snapshot 1`] = ` >
Disposition Details
@@ -472,7 +469,6 @@ exports[`DispositionSummaryView component > matches snapshot 1`] = ` >
Disposition Team
diff --git a/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/update/__snapshots__/UpdateDispositionForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/update/__snapshots__/UpdateDispositionForm.test.tsx.snap index 770d57ec94..0b2282dd3f 100644 --- a/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/update/__snapshots__/UpdateDispositionForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/disposition/tabs/fileDetails/detail/update/__snapshots__/UpdateDispositionForm.test.tsx.snap @@ -436,7 +436,6 @@ exports[`UpdateDispositionForm component > renders as expected 1`] = ` >
Project
@@ -640,7 +639,6 @@ exports[`UpdateDispositionForm component > renders as expected 1`] = ` >
Schedule
@@ -757,7 +755,6 @@ exports[`UpdateDispositionForm component > renders as expected 1`] = ` >
Disposition Details
@@ -1314,7 +1311,6 @@ exports[`UpdateDispositionForm component > renders as expected 1`] = ` >
Disposition Team
diff --git a/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/__snapshots__/OffersAndSaleView.test.tsx.snap b/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/__snapshots__/OffersAndSaleView.test.tsx.snap index b46ee667ce..388b3c2ee7 100644 --- a/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/__snapshots__/OffersAndSaleView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/__snapshots__/OffersAndSaleView.test.tsx.snap @@ -59,7 +59,6 @@ exports[`Disposition Offer Detail View component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
Sales Details
diff --git a/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/dispositionSale/update/__snapshots__/UpdateDispositionSaleView.test.tsx.snap b/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/dispositionSale/update/__snapshots__/UpdateDispositionSaleView.test.tsx.snap index 5dff5750e5..26118a88a6 100644 --- a/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/dispositionSale/update/__snapshots__/UpdateDispositionSaleView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/disposition/tabs/offersAndSale/dispositionSale/update/__snapshots__/UpdateDispositionSaleView.test.tsx.snap @@ -366,7 +366,6 @@ exports[`Update Disposition Sale View > renders as expected 1`] = ` >
Sales Details
diff --git a/source/frontend/src/features/mapSideBar/lease/tabs/consultations/detail/__snapshots__/ConsultationListView.test.tsx.snap b/source/frontend/src/features/mapSideBar/lease/tabs/consultations/detail/__snapshots__/ConsultationListView.test.tsx.snap index 2d572b736d..897dc2f8a5 100644 --- a/source/frontend/src/features/mapSideBar/lease/tabs/consultations/detail/__snapshots__/ConsultationListView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/lease/tabs/consultations/detail/__snapshots__/ConsultationListView.test.tsx.snap @@ -412,7 +412,6 @@ exports[`ConsultationListView component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected 1`] = ` >
Update Approval / Consultation
diff --git a/source/frontend/src/features/mapSideBar/management/__snapshots__/ManagementView.test.tsx.snap b/source/frontend/src/features/mapSideBar/management/__snapshots__/ManagementView.test.tsx.snap index 631be360da..b536cf5041 100644 --- a/source/frontend/src/features/mapSideBar/management/__snapshots__/ManagementView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/management/__snapshots__/ManagementView.test.tsx.snap @@ -1281,7 +1281,6 @@ exports[`ManagementView component > renders as expected 1`] = ` >
Project
@@ -1358,7 +1357,6 @@ exports[`ManagementView component > renders as expected 1`] = ` >
Management Details
@@ -1488,7 +1486,6 @@ exports[`ManagementView component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Management Team
@@ -1731,7 +1727,6 @@ exports[`ManagementView component > renders as expected 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/management/add/__snapshots__/AddManagementContainerView.test.tsx.snap b/source/frontend/src/features/mapSideBar/management/add/__snapshots__/AddManagementContainerView.test.tsx.snap index 0ac208242f..63c774a14f 100644 --- a/source/frontend/src/features/mapSideBar/management/add/__snapshots__/AddManagementContainerView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/management/add/__snapshots__/AddManagementContainerView.test.tsx.snap @@ -640,7 +640,6 @@ exports[`Add Management Container View > matches snapshot 1`] = ` >
Project
@@ -843,7 +842,6 @@ exports[`Add Management Container View > matches snapshot 1`] = ` >
Properties to include in this file:
@@ -871,7 +869,6 @@ exports[`Add Management Container View > matches snapshot 1`] = ` >
matches snapshot 1`] = ` >
Management Details
@@ -1269,7 +1265,6 @@ exports[`Add Management Container View > matches snapshot 1`] = ` >
Management Team
@@ -1302,7 +1297,6 @@ exports[`Add Management Container View > matches snapshot 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/management/form/__snapshots__/ManagementPropertiesSubForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/management/form/__snapshots__/ManagementPropertiesSubForm.test.tsx.snap index 9f9c6338be..7e90390685 100644 --- a/source/frontend/src/features/mapSideBar/management/form/__snapshots__/ManagementPropertiesSubForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/management/form/__snapshots__/ManagementPropertiesSubForm.test.tsx.snap @@ -472,7 +472,6 @@ exports[`ManagementPropertiesSubForm component > renders as expected 1`] = ` >
matches snapshot 1`] = ` >
Project
@@ -286,7 +285,6 @@ exports[`ManagementFileTabs component > matches snapshot 1`] = ` >
Management Details
@@ -416,7 +414,6 @@ exports[`ManagementFileTabs component > matches snapshot 1`] = ` >
matches snapshot 1`] = ` >
Management Team
@@ -659,7 +655,6 @@ exports[`ManagementFileTabs component > matches snapshot 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/management/tabs/activities/__snapshots__/ActivitiesTab.test.tsx.snap b/source/frontend/src/features/mapSideBar/management/tabs/activities/__snapshots__/ActivitiesTab.test.tsx.snap index d0c518be99..fb48e0b0f0 100644 --- a/source/frontend/src/features/mapSideBar/management/tabs/activities/__snapshots__/ActivitiesTab.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/management/tabs/activities/__snapshots__/ActivitiesTab.test.tsx.snap @@ -91,7 +91,6 @@ exports[`ManagementSummaryView component > matches snapshot 1`] = ` >
matches snapshot 1`] = ` >
renders as expected 1`] = ` >
Select File Properties
@@ -618,7 +617,6 @@ exports[`ManagementActivityEditForm component > renders as expected 1`] = ` >
Activity Details
@@ -1417,7 +1415,6 @@ exports[`ManagementActivityEditForm component > renders as expected 1`] = ` >
matches snapshot 1`] = ` >
Project
@@ -223,7 +222,6 @@ exports[`ManagementSummaryView component > matches snapshot 1`] = ` >
Management Details
@@ -353,7 +351,6 @@ exports[`ManagementSummaryView component > matches snapshot 1`] = ` >
matches snapshot 1`] = ` >
Management Team
@@ -828,7 +824,6 @@ exports[`ManagementSummaryView component > matches snapshot 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/management/update/__snapshots__/UpdateManagementForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/management/update/__snapshots__/UpdateManagementForm.test.tsx.snap index 8b194b28d7..2f523f8e57 100644 --- a/source/frontend/src/features/mapSideBar/management/update/__snapshots__/UpdateManagementForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/management/update/__snapshots__/UpdateManagementForm.test.tsx.snap @@ -463,7 +463,6 @@ exports[`UpdateManagementForm component > renders as expected 1`] = ` >
Project
@@ -667,7 +666,6 @@ exports[`UpdateManagementForm component > renders as expected 1`] = ` >
Management Details
@@ -943,7 +941,6 @@ exports[`UpdateManagementForm component > renders as expected 1`] = ` >
Management Team
@@ -1302,7 +1299,6 @@ exports[`UpdateManagementForm component > renders as expected 1`] = ` >
Notice of Claim
diff --git a/source/frontend/src/features/mapSideBar/project/add/__snapshots__/AddProjectForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/project/add/__snapshots__/AddProjectForm.test.tsx.snap index 9036f0d85b..fa26377ce4 100644 --- a/source/frontend/src/features/mapSideBar/project/add/__snapshots__/AddProjectForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/project/add/__snapshots__/AddProjectForm.test.tsx.snap @@ -272,7 +272,6 @@ exports[`AddProjectForm component > renders as expected 1`] = ` >
Project Details
@@ -501,7 +500,6 @@ exports[`AddProjectForm component > renders as expected 1`] = ` >
Associated Codes
@@ -682,7 +680,6 @@ exports[`AddProjectForm component > renders as expected 1`] = ` >
Associated products
@@ -716,7 +713,6 @@ exports[`AddProjectForm component > renders as expected 1`] = ` >
Project Management Team
@@ -1127,7 +1123,6 @@ exports[`AddProjectForm component > renders as expected with existing data 1`] = >
Project Details
@@ -1358,7 +1353,6 @@ exports[`AddProjectForm component > renders as expected with existing data 1`] = >
Associated Codes
@@ -1539,7 +1533,6 @@ exports[`AddProjectForm component > renders as expected with existing data 1`] = >
Associated products
@@ -2194,7 +2187,6 @@ exports[`AddProjectForm component > renders as expected with existing data 1`] = >
Project Management Team
diff --git a/source/frontend/src/features/mapSideBar/project/tabs/projectDetails/detail/__snapshots__/ProjectSummaryView.test.tsx.snap b/source/frontend/src/features/mapSideBar/project/tabs/projectDetails/detail/__snapshots__/ProjectSummaryView.test.tsx.snap index 11369dc419..e0f827f7b7 100644 --- a/source/frontend/src/features/mapSideBar/project/tabs/projectDetails/detail/__snapshots__/ProjectSummaryView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/project/tabs/projectDetails/detail/__snapshots__/ProjectSummaryView.test.tsx.snap @@ -73,7 +73,6 @@ exports[`ProjectSummaryView component > matches snapshot 1`] = ` >
Project Details
@@ -138,7 +137,6 @@ exports[`ProjectSummaryView component > matches snapshot 1`] = ` >
Associated Codes
@@ -236,7 +234,6 @@ exports[`ProjectSummaryView component > matches snapshot 1`] = ` >
Associated Products
@@ -446,7 +443,6 @@ exports[`ProjectSummaryView component > matches snapshot 1`] = ` >
Project Management Team
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/ltsa/__snapshots__/LtsaPlanTabView.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/ltsa/__snapshots__/LtsaPlanTabView.test.tsx.snap index 009eafffda..31fb19c021 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/ltsa/__snapshots__/LtsaPlanTabView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/ltsa/__snapshots__/LtsaPlanTabView.test.tsx.snap @@ -108,7 +108,6 @@ exports[`LtsaPlanTabView component > renders as expected when provided valid lts >
Strata Plan Common Property Details
@@ -190,7 +189,6 @@ exports[`LtsaPlanTabView component > renders as expected when provided valid lts >
Legal Notations on Strata Common Property
@@ -307,7 +305,6 @@ GOVERNMENT ACT, SEE EP96596 >
Charges on Strata Common Property
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyAssociations/__snapshots__/PropertyAssociationTabView.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/propertyAssociations/__snapshots__/PropertyAssociationTabView.test.tsx.snap index 954e7ab95b..070fe5bdd0 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyAssociations/__snapshots__/PropertyAssociationTabView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyAssociations/__snapshots__/PropertyAssociationTabView.test.tsx.snap @@ -106,7 +106,6 @@ exports[`PropertyAssociationTabView component > renders as expected when provide >
renders as expected when provide >
renders as expected when provide >
renders as expected when provide >
renders as expected when provide >
matches snapshot 1`] = ` >
Subdivision History
@@ -82,7 +81,6 @@ exports[`Operation section view > matches snapshot 1`] = ` >
matches snapshot 1`] = ` >
Consolidation History
@@ -506,7 +503,6 @@ exports[`Operation section view > matches snapshot 1`] = ` >
matches snapshot 1`] = ` >
renders as expected 1`] = ` >
Property Address
@@ -1188,7 +1187,6 @@ exports[`UpdatePropertyDetailsContainer component > renders as expected 1`] = ` >
Property Attributes
@@ -1827,7 +1825,6 @@ exports[`UpdatePropertyDetailsContainer component > renders as expected 1`] = ` >
Tenure
@@ -2365,7 +2362,6 @@ exports[`UpdatePropertyDetailsContainer component > renders as expected 1`] = ` >
Measurements
@@ -2712,7 +2708,6 @@ exports[`UpdatePropertyDetailsContainer component > renders as expected 1`] = ` >
Surplus Declaration
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetails/update/__snapshots__/UpdatePropertyDetailsForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetails/update/__snapshots__/UpdatePropertyDetailsForm.test.tsx.snap index b727d79763..ced4c20b44 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetails/update/__snapshots__/UpdatePropertyDetailsForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetails/update/__snapshots__/UpdatePropertyDetailsForm.test.tsx.snap @@ -406,7 +406,6 @@ exports[`UpdatePropertyDetailsForm component > renders as expected 1`] = ` >
Property Address
@@ -1168,7 +1167,6 @@ exports[`UpdatePropertyDetailsForm component > renders as expected 1`] = ` >
Property Attributes
@@ -1807,7 +1805,6 @@ exports[`UpdatePropertyDetailsForm component > renders as expected 1`] = ` >
Tenure
@@ -2335,7 +2332,6 @@ exports[`UpdatePropertyDetailsForm component > renders as expected 1`] = ` >
Measurements
@@ -2682,7 +2678,6 @@ exports[`UpdatePropertyDetailsForm component > renders as expected 1`] = ` >
Surplus Declaration
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/detail/InvoiceView.tsx b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/detail/InvoiceView.tsx index fc725b5770..afcc5dcce1 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/detail/InvoiceView.tsx +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/detail/InvoiceView.tsx @@ -28,7 +28,7 @@ export const InvoiceView: React.FunctionComponent +
{activityInvoice.invoiceNum} diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/edit/__snapshots__/InvoiceTotalsForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/edit/__snapshots__/InvoiceTotalsForm.test.tsx.snap index 662e6451dc..d897084e67 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/edit/__snapshots__/InvoiceTotalsForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/activity/edit/__snapshots__/InvoiceTotalsForm.test.tsx.snap @@ -283,7 +283,6 @@ exports[`EditPropertyActivity - InvoiceTotalsForm > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Activity Details
@@ -1255,7 +1254,6 @@ exports[`PropertyActivityEditForm component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
renders as expected when provided v >
renders as expected when provi >
renders as expected when provided v >
Contact Details
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/update/summary/__snapshots__/PropertyManagementUpdateForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/update/summary/__snapshots__/PropertyManagementUpdateForm.test.tsx.snap index f0ea2e4428..17dbdeb8e7 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/update/summary/__snapshots__/PropertyManagementUpdateForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyDetailsManagement/update/summary/__snapshots__/PropertyManagementUpdateForm.test.tsx.snap @@ -295,7 +295,6 @@ exports[`PropertyManagementUpdateForm component > renders as expected 1`] = ` >
Summary
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyImprovements/form/__snapshots__/PropertyImprovementForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/propertyImprovements/form/__snapshots__/PropertyImprovementForm.test.tsx.snap index 93b7f11a86..ea92db914b 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyImprovements/form/__snapshots__/PropertyImprovementForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyImprovements/form/__snapshots__/PropertyImprovementForm.test.tsx.snap @@ -292,7 +292,6 @@ exports[`PropertyImprovementForm component > renders as expected 1`] = ` >
Property Improvement Details
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/detail/__snapshots__/PropertyResearchTabView.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/detail/__snapshots__/PropertyResearchTabView.test.tsx.snap index 8bc9a59f73..a1b1852263 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/detail/__snapshots__/PropertyResearchTabView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/detail/__snapshots__/PropertyResearchTabView.test.tsx.snap @@ -337,7 +337,6 @@ exports[`PropertyResearchTabView component > renders as expected when provided v >
Property of Interest
@@ -449,7 +448,6 @@ exports[`PropertyResearchTabView component > renders as expected when provided v >
Research Summary
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/update/__snapshots__/UpdatePropertyForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/update/__snapshots__/UpdatePropertyForm.test.tsx.snap index e512a91168..b064964c0e 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/update/__snapshots__/UpdatePropertyForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/propertyResearch/update/__snapshots__/UpdatePropertyForm.test.tsx.snap @@ -61,7 +61,6 @@ exports[`UpdatePropertyForm component > renders as expected 1`] = ` >
Property of Interest
@@ -435,7 +434,6 @@ exports[`UpdatePropertyForm component > renders as expected 1`] = ` >
Research Summary
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/takes/detail/__snapshots__/TakesDetailView.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/takes/detail/__snapshots__/TakesDetailView.test.tsx.snap index de4bcdcdcd..e44a09515e 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/takes/detail/__snapshots__/TakesDetailView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/takes/detail/__snapshots__/TakesDetailView.test.tsx.snap @@ -225,7 +225,6 @@ exports[`TakesDetailView component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Area
@@ -1159,7 +1157,6 @@ exports[`TakesDetailView component > renders as expected 1`] = ` >
Surplus
diff --git a/source/frontend/src/features/mapSideBar/property/tabs/takes/update/__snapshots__/TakeUpdateForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/property/tabs/takes/update/__snapshots__/TakeUpdateForm.test.tsx.snap index 3b3cad020b..8bc27f3880 100644 --- a/source/frontend/src/features/mapSideBar/property/tabs/takes/update/__snapshots__/TakeUpdateForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/property/tabs/takes/update/__snapshots__/TakeUpdateForm.test.tsx.snap @@ -169,7 +169,6 @@ exports[`TakeUpdateForm component > renders as expected 1`] = ` >
Update Take
@@ -461,7 +460,6 @@ exports[`TakeUpdateForm component > renders as expected 1`] = ` >
Area
@@ -1861,7 +1859,6 @@ exports[`TakeUpdateForm component > renders as expected 1`] = ` >
Surplus
diff --git a/source/frontend/src/features/mapSideBar/research/__snapshots__/ResearchContainer.test.tsx.snap b/source/frontend/src/features/mapSideBar/research/__snapshots__/ResearchContainer.test.tsx.snap index 276f6fc917..10a9173cbc 100644 --- a/source/frontend/src/features/mapSideBar/research/__snapshots__/ResearchContainer.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/research/__snapshots__/ResearchContainer.test.tsx.snap @@ -1159,7 +1159,6 @@ exports[`ResearchContainer component > renders as expected 1`] = ` >
Project
@@ -1202,7 +1201,6 @@ exports[`ResearchContainer component > renders as expected 1`] = ` >
Roads
@@ -1262,7 +1260,6 @@ exports[`ResearchContainer component > renders as expected 1`] = ` >
Research Request
@@ -1401,7 +1398,6 @@ exports[`ResearchContainer component > renders as expected 1`] = ` >
Result
@@ -1484,7 +1480,6 @@ exports[`ResearchContainer component > renders as expected 1`] = ` >
Expropriation
diff --git a/source/frontend/src/features/mapSideBar/research/add/__snapshots__/AddResearchContainer.test.tsx.snap b/source/frontend/src/features/mapSideBar/research/add/__snapshots__/AddResearchContainer.test.tsx.snap index 565cef9b3f..49eab45755 100644 --- a/source/frontend/src/features/mapSideBar/research/add/__snapshots__/AddResearchContainer.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/research/add/__snapshots__/AddResearchContainer.test.tsx.snap @@ -737,7 +737,6 @@ exports[`AddResearchContainer component > renders as expected 1`] = ` >
Project
@@ -770,7 +769,6 @@ exports[`AddResearchContainer component > renders as expected 1`] = ` >
Properties to include in this file:
@@ -895,7 +893,6 @@ exports[`AddResearchContainer component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Project
@@ -514,7 +513,6 @@ exports[`AddResearchForm component > renders as expected 1`] = ` >
Properties to include in this file:
@@ -639,7 +637,6 @@ exports[`AddResearchForm component > renders as expected 1`] = ` >
renders as expected 1`] = ` >
Properties to include in this file:
@@ -578,7 +577,6 @@ exports[`ResearchProperties component > renders as expected 1`] = ` >
matches snapshot 1`] = ` >
Project
@@ -210,7 +209,6 @@ exports[`ResearchFileTabs component > matches snapshot 1`] = ` >
Roads
@@ -268,7 +266,6 @@ exports[`ResearchFileTabs component > matches snapshot 1`] = ` >
Research Request
@@ -401,7 +398,6 @@ exports[`ResearchFileTabs component > matches snapshot 1`] = ` >
Result
@@ -482,7 +478,6 @@ exports[`ResearchFileTabs component > matches snapshot 1`] = ` >
Expropriation
diff --git a/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/details/__snapshots__/ResearchSummaryView.test.tsx.snap b/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/details/__snapshots__/ResearchSummaryView.test.tsx.snap index 1fb307f6c5..521c6792f1 100644 --- a/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/details/__snapshots__/ResearchSummaryView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/details/__snapshots__/ResearchSummaryView.test.tsx.snap @@ -75,7 +75,6 @@ exports[`ResearchSummaryView component > renders as expected 1`] = ` >
Project
@@ -118,7 +117,6 @@ exports[`ResearchSummaryView component > renders as expected 1`] = ` >
Roads
@@ -178,7 +176,6 @@ exports[`ResearchSummaryView component > renders as expected 1`] = ` >
Research Request
@@ -317,7 +314,6 @@ exports[`ResearchSummaryView component > renders as expected 1`] = ` >
Result
@@ -400,7 +396,6 @@ exports[`ResearchSummaryView component > renders as expected 1`] = ` >
Expropriation
diff --git a/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryContainer.test.tsx.snap b/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryContainer.test.tsx.snap index 91f8d8002a..6c7c3de597 100644 --- a/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryContainer.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryContainer.test.tsx.snap @@ -496,7 +496,6 @@ exports[`Research File Update Container > Renders the underlying form 1`] = ` >
Research File Information
@@ -720,7 +719,6 @@ exports[`Research File Update Container > Renders the underlying form 1`] = ` >
Project
@@ -868,7 +866,6 @@ exports[`Research File Update Container > Renders the underlying form 1`] = ` >
Roads
@@ -948,7 +945,6 @@ exports[`Research File Update Container > Renders the underlying form 1`] = ` >
Research Request
@@ -1320,7 +1316,6 @@ exports[`Research File Update Container > Renders the underlying form 1`] = ` >
Result
@@ -1419,7 +1414,6 @@ exports[`Research File Update Container > Renders the underlying form 1`] = ` >
Expropriation
diff --git a/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryForm.test.tsx.snap index 65d24be2f5..8164c7b233 100644 --- a/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/research/tabs/fileDetails/update/__snapshots__/UpdateSummaryForm.test.tsx.snap @@ -449,7 +449,6 @@ exports[`UpdateResearchForm component > renders as expected when provided no res >
Research File Information
@@ -673,7 +672,6 @@ exports[`UpdateResearchForm component > renders as expected when provided no res >
Project
@@ -706,7 +704,6 @@ exports[`UpdateResearchForm component > renders as expected when provided no res >
Roads
@@ -786,7 +783,6 @@ exports[`UpdateResearchForm component > renders as expected when provided no res >
Research Request
@@ -1158,7 +1154,6 @@ exports[`UpdateResearchForm component > renders as expected when provided no res >
Result
@@ -1257,7 +1252,6 @@ exports[`UpdateResearchForm component > renders as expected when provided no res >
Expropriation
diff --git a/source/frontend/src/features/mapSideBar/shared/improvements/FilePropertiesImprovements/__snapshots__/FilePropertiesImprovementsView.test.tsx.snap b/source/frontend/src/features/mapSideBar/shared/improvements/FilePropertiesImprovements/__snapshots__/FilePropertiesImprovementsView.test.tsx.snap index e5829e4de7..ccaa408825 100644 --- a/source/frontend/src/features/mapSideBar/shared/improvements/FilePropertiesImprovements/__snapshots__/FilePropertiesImprovementsView.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/shared/improvements/FilePropertiesImprovements/__snapshots__/FilePropertiesImprovementsView.test.tsx.snap @@ -216,7 +216,6 @@ exports[`File properties improvements list view > renders as expected 1`] = ` >
renders as expected 1`] = ` >
File Initiation
@@ -562,7 +561,6 @@ exports[`ChecklistView component > renders as expected 1`] = ` >
Active File Management
@@ -1768,7 +1766,6 @@ exports[`ChecklistView component > renders as expected 1`] = ` >
Crown Land
@@ -1815,7 +1812,6 @@ exports[`ChecklistView component > renders as expected 1`] = ` >
Section 3 - Agreement
@@ -2390,7 +2386,6 @@ exports[`ChecklistView component > renders as expected 1`] = ` >
Section 6 - Expropriation
@@ -2940,7 +2935,6 @@ exports[`ChecklistView component > renders as expected 1`] = ` >
Acquisition Completion
diff --git a/source/frontend/src/features/mapSideBar/shared/tabs/checklist/update/__snapshots__/UpdateChecklistForm.test.tsx.snap b/source/frontend/src/features/mapSideBar/shared/tabs/checklist/update/__snapshots__/UpdateChecklistForm.test.tsx.snap index 7e2df15715..01b9161641 100644 --- a/source/frontend/src/features/mapSideBar/shared/tabs/checklist/update/__snapshots__/UpdateChecklistForm.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/shared/tabs/checklist/update/__snapshots__/UpdateChecklistForm.test.tsx.snap @@ -77,7 +77,6 @@ exports[`UpdateChecklist form > renders as expected 1`] = ` >
File Initiation
@@ -362,7 +361,6 @@ exports[`UpdateChecklist form > renders as expected 1`] = ` >
Active File Management
@@ -1215,7 +1213,6 @@ exports[`UpdateChecklist form > renders as expected 1`] = ` >
Crown Land
@@ -1237,7 +1234,6 @@ exports[`UpdateChecklist form > renders as expected 1`] = ` >
Section 3 - Agreement
@@ -1640,7 +1636,6 @@ exports[`UpdateChecklist form > renders as expected 1`] = ` >
Section 6 - Expropriation
@@ -2039,7 +2034,6 @@ exports[`UpdateChecklist form > renders as expected 1`] = ` >
Acquisition Completion
diff --git a/source/frontend/src/features/mapSideBar/shared/update/properties/__snapshots__/UpdateProperties.test.tsx.snap b/source/frontend/src/features/mapSideBar/shared/update/properties/__snapshots__/UpdateProperties.test.tsx.snap index b60f152645..540616d810 100644 --- a/source/frontend/src/features/mapSideBar/shared/update/properties/__snapshots__/UpdateProperties.test.tsx.snap +++ b/source/frontend/src/features/mapSideBar/shared/update/properties/__snapshots__/UpdateProperties.test.tsx.snap @@ -752,7 +752,6 @@ exports[`UpdateProperties component > renders as expected 1`] = ` >
matches snapshot 1`] = ` >
Selected Parent
@@ -715,7 +714,6 @@ exports[`Add Subdivision View > matches snapshot 1`] = ` >
renders as expected 1`] = ` >
({ cancelButtonText: 'No', handleOk: () => { // allow the properties to be added to the file being created - formikRef.current?.resetForm(); formikRef.current?.setFieldValue(fieldName, properties); setDisplayModal(false); // show the user confirmation modal only once when creating a file diff --git a/source/frontend/src/hooks/useRefreshSiteminder.ts b/source/frontend/src/hooks/useRefreshSiteminder.ts index 99ae736075..08d26df218 100644 --- a/source/frontend/src/hooks/useRefreshSiteminder.ts +++ b/source/frontend/src/hooks/useRefreshSiteminder.ts @@ -1,5 +1,5 @@ import axios from 'axios'; -import { useCallback } from 'react'; +import { useCallback, useRef } from 'react'; import { useTenant } from '@/tenants'; @@ -8,6 +8,7 @@ import { useModalContext } from './useModalContext'; export const useRefreshSiteminder = () => { const { parcelMapFullyAttributed } = useTenant(); const { setModalContent, setDisplayModal } = useModalContext(); + const hasShownModalRef = useRef(false); // only display this warning once. const refresh = useCallback(async () => { try { @@ -29,14 +30,17 @@ export const useRefreshSiteminder = () => { throw new Error('Session expired'); } } catch { - setModalContent({ - title: 'Session Expired', - message: - 'Your SITEMINDER session has expired. Please save any in-progress work and log out of the PIMS application.', - okButtonText: 'OK', - variant: 'warning', - }); - setDisplayModal(true); + if (!hasShownModalRef.current) { + hasShownModalRef.current = true; + setModalContent({ + title: 'Session Expired', + message: + 'Your SITEMINDER session has expired. Please save any in-progress work and log out of the PIMS application.', + okButtonText: 'OK', + variant: 'warning', + }); + setDisplayModal(true); + } console.error('Unable to refresh Siteminder cookie'); } }, [parcelMapFullyAttributed, setModalContent, setDisplayModal]); diff --git a/source/frontend/src/utils/mapPropertyUtils.ts b/source/frontend/src/utils/mapPropertyUtils.ts index badd4cac6b..2e6c780e55 100644 --- a/source/frontend/src/utils/mapPropertyUtils.ts +++ b/source/frontend/src/utils/mapPropertyUtils.ts @@ -192,13 +192,16 @@ export const getFeatureBoundedCenter = (feature: Feature