diff options
author | eug-vs <eug-vs@keemail.me> | 2020-10-08 19:22:09 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-10-08 19:22:09 +0300 |
commit | 8660ae7ba37c3e1812bfbbf4bca31bfe3274edcf (patch) | |
tree | 77d7707b24a287ea569521014864f7b20209d0dd /src/containers/Page/Router.tsx | |
parent | 3cbf292b6d4976589428d0841cd1201057d104d4 (diff) | |
download | which-ui-8660ae7ba37c3e1812bfbbf4bca31bfe3274edcf.tar.gz |
fix: resolve ts errors
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(() => { |