Skip to content

Commit 15d66d6

Browse files
committed
remove un used props
1 parent d086cfc commit 15d66d6

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 = {
@@ -913,7 +913,7 @@ const StreamEventsTable = ({ loadEvents, loading, streamType, entityType, actorI
913913
);
914914
};
915915

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

0 commit comments

Comments
 (0)