[WEB-4196]fix: sub work item copy link message #7186

This commit is contained in:
Vamsi Krishna
2025-06-09 15:46:57 +05:30
committed by GitHub
parent 07e937cd8e
commit 8fcffd2338

View File

@@ -46,10 +46,7 @@ export const useSubIssueOperations = (issueServiceType: TIssueServiceType): TSub
type: TOAST_TYPE.SUCCESS,
title: t("common.link_copied"),
message: t("entity.link_copied_to_clipboard", {
entity:
issueServiceType === EIssueServiceType.ISSUES
? t("issue.label", { count: 1 })
: t("epic.label", { count: 1 }),
entity: t("epic.label", { count: 1 }),
}),
});
});