Skip to content

Commit

Permalink
refactor(favorite-locations): Move location components to subfolder.
Browse files Browse the repository at this point in the history
  • Loading branch information
binh-dam-ibigroup committed Dec 29, 2020
1 parent 3787ba8 commit 18d2ad3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import React from 'react'
import { DropdownButton, InputGroup, MenuItem } from 'react-bootstrap'
import styled, { css } from 'styled-components'

import connectLocationField from '../form/connect-location-field'
import Icon from '../narrative/icon'
import connectLocationField from '../../form/connect-location-field'
import Icon from '../../narrative/icon'

/**
* This module contains components common to the favorite location components.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FieldArray } from 'formik'
import React from 'react'
import { ControlLabel } from 'react-bootstrap'

import { isHomeOrWork } from '../../util/user'
import { isHomeOrWork } from '../../../util/user'
import FavoriteLocation from './favorite-location'
import FixedFavoriteLocation from './fixed-favorite-location'
import NewFavoriteLocation from './new-favorite-location'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from 'react-bootstrap'
import styled from 'styled-components'

import Icon from '../narrative/icon'
import Icon from '../../narrative/icon'
import {
FavoriteLocationField,
FixedLocationType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
InputGroup
} from 'react-bootstrap'

import Icon from '../narrative/icon'
import Icon from '../../narrative/icon'
import {
FavoriteLocationField,
FIELD_HEIGHT_PX,
Expand Down
2 changes: 1 addition & 1 deletion lib/components/user/user-account-screen.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { isNewUser, isHome, isWork } from '../../util/user'
import DesktopNav from '../app/desktop-nav'
import AccountSetupFinishPane from './account-setup-finish-pane'
import ExistingAccountDisplay from './existing-account-display'
import FavoriteLocationsPane from './favorite-locations-pane'
import FavoriteLocationsPane from './favorite-locations/favorite-locations-pane'
import NewAccountWizard from './new-account-wizard'
import NotificationPrefsPane from './notification-prefs-pane'
import TermsOfUsePane from './terms-of-use-pane'
Expand Down

0 comments on commit 18d2ad3

Please sign in to comment.