Skip to content

Commit

Permalink
ISSUE #4689 - remove unused prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Amantini1997 committed Jan 19, 2024
1 parent a581923 commit a0e9c2f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/v5/store/tickets/tickets.redux.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const { Types: TicketsTypes, Creators: TicketsActions } = createActions({
fetchRiskCategories: ['teamspace'],
fetchRiskCategoriesSuccess: ['riskCategories'],
fetchTicketGroups: ['teamspace', 'projectId', 'modelId', 'ticketId', 'revision'],
fetchTicketGroupsSuccess: ['groups', 'revision'],
fetchTicketGroupsSuccess: ['groups'],
upsertTicketAndFetchGroups: ['teamspace', 'projectId', 'modelId', 'ticket', 'revision'],
updateTicketGroup: ['teamspace', 'projectId', 'modelId', 'ticketId', 'group', 'isFederation'],
updateTicketGroupSuccess: ['group'],
Expand Down Expand Up @@ -140,7 +140,7 @@ export type FetchTemplatesSuccessAction = Action<'FETCH_TEMPLATES_SUCCESS'> & Mo
export type FetchRiskCategoriesAction = Action<'FETCH_RISK_CATEGORIES'> & TeamspaceId;
export type FetchRiskCategoriesSuccessAction = Action<'FETCH_RISK_CATEGORIES_SUCCESS'> & { riskCategories: string[] };
export type FetchTicketGroupsAction = Action<'FETCH_TICKET_GROUPS'> & TeamspaceProjectAndModel & { ticketId: string, groupId: string, revision?: string };
export type FetchTicketGroupsSuccessAction = Action<'FETCH_TICKET_GROUPS_SUCCESS'> & { groups: Group[], revision?: string };
export type FetchTicketGroupsSuccessAction = Action<'FETCH_TICKET_GROUPS_SUCCESS'> & { groups: Group[] };
export type UpdateTicketGroupAction = Action<'UPDATE_TICKET_GROUP'> & TeamspaceProjectAndModel & { ticketId: string, group: Group, isFederation: boolean };
export type UpdateTicketGroupSuccessAction = Action<'UPDATE_TICKET_GROUP_SUCCESS'> & { group: Group };
export type ClearGroupsAction = Action<'CLEAR_GROUPS'>;
Expand Down Expand Up @@ -215,7 +215,6 @@ export interface ITicketsActionCreators {
) => FetchTicketGroupsAction;
fetchTicketGroupsSuccess: (
groups: Group[],
revision?: string,
) => FetchTicketGroupsSuccessAction;
updateTicketGroup: (
teamspace: string,
Expand Down

0 comments on commit a0e9c2f

Please sign in to comment.