@@ -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 = {
@@ -907,7 +907,7 @@ const StreamEventsTable = ({ loadEvents, loading, streamType, entityType, actorI
907
907
) ;
908
908
} ;
909
909
910
- const BatchTable = ( { loadEvents, loading, streamType , entityType , actorId , events } : TableProps ) => {
910
+ const BatchTable = ( { loadEvents, loading, events } : TableProps ) => {
911
911
const batchEvents = ( events || ( [ ] as EventsLogRecord [ ] ) ) . map ( ( e , i ) => ( {
912
912
...e ,
913
913
id : e . date + "_" + i ,
0 commit comments