File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -58,18 +58,21 @@ export function AppBar() {
5858
5959 return (
6060 < Header >
61- < Header . Item sx = { { cursor : "pointer" } } onClick = { ( ) => router . push ( "/" ) } >
61+ < Header . Item
62+ style = { { cursor : "pointer" } }
63+ onClick = { ( ) => router . push ( "/" ) }
64+ >
6265 < Image src = { Logo } height = { 48 } alt = { "httpmock.dev logo" } />
6366 < Heading
6467 sx = { { fontWeight : "lighter" , display : [ "none" , "block" ] } }
65- as = { "h1 " }
68+ as = { "h2 " }
6669 >
6770 httpmock
6871 </ Heading >
6972 { activeProject === null && (
7073 < Heading
7174 sx = { { fontWeight : "lighter" , display : [ "block" , "none" ] } }
72- as = { "h1 " }
75+ as = { "h2 " }
7376 >
7477 httpmock
7578 </ Heading >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export interface StoreProviderProps {
1515}
1616
1717export const AppStoreProvider = ( { children } : StoreProviderProps ) => {
18- const storeRef = useRef < AppStoreApi > ( ) ;
18+ const storeRef = useRef < AppStoreApi > ( null ) ;
1919 if ( ! storeRef . current ) {
2020 storeRef . current = createStore ( ) ;
2121 }
You can’t perform that action at this time.
0 commit comments