From 9f740bae588e64c2edad7ba21ad5d1166e55479e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9verin=20Beauvais?= Date: Thu, 22 Feb 2024 11:51:01 -0800 Subject: [PATCH] Update BreadcrumbResource.ts - removed superfluous typing --- src/resources/BreadcrumbResource.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/resources/BreadcrumbResource.ts b/src/resources/BreadcrumbResource.ts index 20ea55fa9..84809aec4 100644 --- a/src/resources/BreadcrumbResource.ts +++ b/src/resources/BreadcrumbResource.ts @@ -9,9 +9,9 @@ const store = useStore() /** Returns legal name. */ function getLegalName (): string { - const getFilingType: FilingTypes = store.getFilingType - const getBusinessLegalName: string = store.getBusinessLegalName - const getNameRequestApprovedName: string = store.getNameRequestApprovedName + const getFilingType = store.getFilingType + const getBusinessLegalName = store.getBusinessLegalName + const getNameRequestApprovedName = store.getNameRequestApprovedName switch (getFilingType) { case FilingTypes.AMALGAMATION_APPLICATION: return getNameRequestApprovedName