Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
maxiadlovskii committed Jan 17, 2025
1 parent af6d607 commit a7901ee
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ import usePluggableEventActions from 'components/events/events/hooks/usePluggabl
import { MenuItem } from 'components/bootstrap';
import LinkToReplaySearch from 'components/event-definitions/replay-search/LinkToReplaySearch';
import useSendEventActionTelemetry from 'components/events/events/hooks/useSendEventActionTelemetry';
import type { Event } from 'components/events/events/types';

const useEventAction = (event) => {
const useEventAction = (event: Event) => {
const { actions: pluggableActions, actionModals: pluggableActionModals } = usePluggableEventActions([event]);
const sendEventActionTelemetry = useSendEventActionTelemetry();
const hasReplayInfo = !!event.replay_info;
Expand Down

0 comments on commit a7901ee

Please sign in to comment.