File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,7 @@ export const SubmitCommand = ({
8282 switch ( result . _type ) {
8383 case 'Started' :
8484 setResult ( result )
85- const res = await commandService . queryFinal ( result . runId , 5 )
86- setResult ( res )
85+ setResult ( await commandService . queryFinal ( result . runId , 5 ) )
8786 break
8887 default :
8988 setResult ( result )
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ export const SubscribeEvent = ({
7171 } ,
7272 {
7373 title : 'Values' ,
74- // eslint-disable-next-line react/display-name
7574 render : ( _ : string , event : Event ) => {
7675 const counterParam = event . get ( intKey ( 'counter' ) ) ?? { values : [ ] }
7776 return < span > { counterParam . values . join ( ',' ) } </ span >
Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ const LocationServiceContext = createContext<LocationService | undefined>(
99export const LocationServiceProvider = ( {
1010 children,
1111 locationService
12- } : PropsWithChildren < { locationService : LocationService } > ) : React . JSX . Element => (
12+ } : PropsWithChildren < {
13+ locationService : LocationService
14+ } > ) : React . JSX . Element => (
1315 < LocationServiceContext . Provider value = { locationService } >
1416 { children }
1517 </ LocationServiceContext . Provider >
You can’t perform that action at this time.
0 commit comments