diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-10-08 20:40:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 20:40:45 +0300 |
commit | bdb4d194307c9755c2083c1a11bb876abebcb6de (patch) | |
tree | 9aff25b0bd0b47127b66e4db4818468ec70719bf /src/containers/Page/Router.tsx | |
parent | 45b4094c02301ff854b8b8017437ad9989efa117 (diff) | |
parent | 2c093ce738cb1281db04a8a3f2b6a35b3aa9b354 (diff) | |
download | which-ui-bdb4d194307c9755c2083c1a11bb876abebcb6de.tar.gz |
Merge pull request #102 from which-ecosystem/feat/modal
Modal improvements
Diffstat (limited to 'src/containers/Page/Router.tsx')
-rw-r--r-- | src/containers/Page/Router.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/Page/Router.tsx b/src/containers/Page/Router.tsx index 7c3a418..7c74e9a 100644 --- a/src/containers/Page/Router.tsx +++ b/src/containers/Page/Router.tsx @@ -12,7 +12,7 @@ const Home = React.lazy(() => import('../Home/Home')); const Notifications = React.lazy(() => import('../Notifications/Notifications')); export interface LocationState { - background?: Location; + background: Location; } const Router: React.FC = React.memo(() => { |