Skip to content

Commit

Permalink
Remove import rename
Browse files Browse the repository at this point in the history
  • Loading branch information
leodube-aot committed Dec 13, 2023
1 parent be5578c commit 17b7df3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/components/jurisdiction/list-data/canada-jurisdictions.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { JurisdictionLocation as Location } from '@bcrs-shared-components/enums'
import { JurisdictionLocation } from '@bcrs-shared-components/enums'

Check failure on line 1 in src/components/jurisdiction/list-data/canada-jurisdictions.ts

View workflow job for this annotation

GitHub Actions / linting (20.5.1)

Expected consistent spacing

Check failure on line 1 in src/components/jurisdiction/list-data/canada-jurisdictions.ts

View workflow job for this annotation

GitHub Actions / linting (20.5.1)

Multiple spaces found before '}'
import { JurisdictionI } from '../interfaces'

export const CanJurisdictions: JurisdictionI[] = [
Expand All @@ -8,7 +8,7 @@ export const CanJurisdictions: JurisdictionI[] = [
text: 'Alberta'
},
{
value: Location.BC,
value: JurisdictionLocation.BC,
SHORT_DESC: 'BC',
text: 'British Columbia'
},
Expand Down Expand Up @@ -68,7 +68,7 @@ export const CanJurisdictions: JurisdictionI[] = [
text: 'Yukon'
},
{
value: Location.FD,
value: JurisdictionLocation.FD,
SHORT_DESC: 'FED',
text: 'Federal'
}
Expand Down
6 changes: 3 additions & 3 deletions src/components/jurisdiction/list-data/intl-jurisdictions.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { JurisdictionLocation as Location } from '@bcrs-shared-components/enums'
import { JurisdictionLocation } from '@bcrs-shared-components/enums'
import { JurisdictionI } from '../interfaces'

const CanUsa: JurisdictionI[] = [
{
value: Location.CA,
value: JurisdictionLocation.CA,
SHORT_DESC: 'Canada',
text: 'Canada'
},
{
value: Location.US,
value: JurisdictionLocation.US,
SHORT_DESC: 'United States',
text: 'United States'
}
Expand Down

0 comments on commit 17b7df3

Please sign in to comment.