Skip to content

Commit 28ba0d6

Browse files
committed
remove un used props
1 parent 464bab7 commit 28ba0d6

File tree

1 file changed

+3
-3
lines changed
  • webapps/console/components/DataView/EventsBrowser

1 file changed

+3
-3
lines changed

webapps/console/components/DataView/EventsBrowser/index.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ type TableProps = {
673673
loadEvents: () => void;
674674
};
675675

676-
const FunctionsLogTable = ({ loadEvents, loading, streamType, entityType, actorId, events }: TableProps) => {
676+
const FunctionsLogTable = ({ loadEvents, loading, events }: TableProps) => {
677677
const workspace = useWorkspace();
678678
const [funcsMap, setFuncsMap] = useState<Record<string, FunctionConfig>>({});
679679

@@ -817,7 +817,7 @@ const FunctionsLogTable = ({ loadEvents, loading, streamType, entityType, actorI
817817
);
818818
};
819819

820-
const StreamEventsTable = ({ loadEvents, loading, streamType, entityType, actorId, events }: TableProps) => {
820+
const StreamEventsTable = ({ loadEvents, loading, events }: TableProps) => {
821821
const streamEvents = events
822822
? events.map((e, i) => {
823823
e = {
@@ -907,7 +907,7 @@ const StreamEventsTable = ({ loadEvents, loading, streamType, entityType, actorI
907907
);
908908
};
909909

910-
const BatchTable = ({ loadEvents, loading, streamType, entityType, actorId, events }: TableProps) => {
910+
const BatchTable = ({ loadEvents, loading, events }: TableProps) => {
911911
const batchEvents = (events || ([] as EventsLogRecord[])).map((e, i) => ({
912912
...e,
913913
id: e.date + "_" + i,

0 commit comments

Comments
 (0)