File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
packages/overmind-website/src/app Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const onInitialize: OnInitialize = ({
88 css,
99} ) => {
1010 state . typescript = storage . get ( 'typescript' ) || false
11- state . theme = storage . get ( 'theme' ) || 'components '
11+ state . theme = storage . get ( 'theme' ) || 'react '
1212 css . changePrimary ( state . theme )
1313
1414 router . route ( '/' , app . actions . openHome )
Original file line number Diff line number Diff line change 77 Demo ,
88 SearchResult ,
99} from './types'
10- import { Derive } from 'overmind'
1110
1211type State = {
1312 page : Page
@@ -25,7 +24,6 @@ type State = {
2524 isLoadingSearchResult : boolean
2625 searchResult : SearchResult [ ]
2726 showSearchResult : boolean
28- test : string
2927}
3028
3129const state : State = {
@@ -44,7 +42,6 @@ const state: State = {
4442 isLoadingSearchResult : false ,
4543 searchResult : [ ] ,
4644 showSearchResult : false ,
47- test : '' ,
4845}
4946
5047export default state
You can’t perform that action at this time.
0 commit comments