diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:14:58 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:14:58 +0900 |
commit | 32168a94e07478325a53779513533b76a6ef2c18 (patch) | |
tree | feb1a9fdc8f84e3360298e01abb6c79df5b4d2e4 /src/actions/command.js | |
parent | 5ef9a2a60c99f24fe3df7035ae4dca574fc38c68 (diff) |
fix imports in src
Diffstat (limited to 'src/actions/command.js')
-rw-r--r-- | src/actions/command.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/command.js b/src/actions/command.js index f578afd..a40cc97 100644 --- a/src/actions/command.js +++ b/src/actions/command.js @@ -1,5 +1,5 @@ -import * as tabs from '../background/tabs'; -import * as histories from '../background/histories'; +import * as tabs from 'background/tabs'; +import * as histories from 'background/histories'; import * as consoleActions from './console'; const normalizeUrl = (string, searchConfig) => { |