Skip to content

Commit

Permalink
Fix: Use proper import path for state types in app layout (#1923)
Browse files Browse the repository at this point in the history
In #1895 we added an import to `./state` that should have been
`../state`. This didn't break the app because the import only
affected the types.

In this patch we're fixing the import path.
  • Loading branch information
dmsnell authored Feb 21, 2020
1 parent 8dbda58 commit 480e543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/app-layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import SearchBar from '../search-bar';
import SimplenoteCompactLogo from '../icons/simplenote-compact';
import TransitionDelayEnter from '../components/transition-delay-enter';

import * as S from './state';
import * as S from '../state';
import * as T from '../types';

const NoteList = React.lazy(() =>
Expand Down

0 comments on commit 480e543

Please sign in to comment.