@@ -673,7 +673,7 @@ type TableProps = {
673
673
loadEvents : ( ) => void ;
674
674
} ;
675
675
676
- const FunctionsLogTable = ( { loadEvents, loading, streamType , entityType , actorId , events } : TableProps ) => {
676
+ const FunctionsLogTable = ( { loadEvents, loading, events } : TableProps ) => {
677
677
const workspace = useWorkspace ( ) ;
678
678
const [ funcsMap , setFuncsMap ] = useState < Record < string , FunctionConfig > > ( { } ) ;
679
679
@@ -817,7 +817,7 @@ const FunctionsLogTable = ({ loadEvents, loading, streamType, entityType, actorI
817
817
) ;
818
818
} ;
819
819
820
- const StreamEventsTable = ( { loadEvents, loading, streamType , entityType , actorId , events } : TableProps ) => {
820
+ const StreamEventsTable = ( { loadEvents, loading, events } : TableProps ) => {
821
821
const streamEvents = events
822
822
? events . map ( ( e , i ) => {
823
823
e = {
@@ -913,7 +913,7 @@ const StreamEventsTable = ({ loadEvents, loading, streamType, entityType, actorI
913
913
) ;
914
914
} ;
915
915
916
- const BatchTable = ( { loadEvents, loading, streamType , entityType , actorId , events } : TableProps ) => {
916
+ const BatchTable = ( { loadEvents, loading, events } : TableProps ) => {
917
917
const batchEvents = ( events || ( [ ] as EventsLogRecord [ ] ) ) . map ( ( e , i ) => ( {
918
918
...e ,
919
919
id : e . date + "_" + i ,
0 commit comments