From 160e2777bdb39920653e56f1bf52ad23fd15379d Mon Sep 17 00:00:00 2001 From: brunovjk Date: Sat, 27 Apr 2024 10:55:37 -0300 Subject: [PATCH] Remove dependencies that were added by mistake during conflict resolution --- src/components/MoneyRequestConfirmationList.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/MoneyRequestConfirmationList.tsx b/src/components/MoneyRequestConfirmationList.tsx index b76ca99751afd..367628d9b8fa7 100755 --- a/src/components/MoneyRequestConfirmationList.tsx +++ b/src/components/MoneyRequestConfirmationList.tsx @@ -520,7 +520,8 @@ function MoneyRequestConfirmationList({ if (updatedTagsString !== TransactionUtils.getTag(transaction) && updatedTagsString) { IOU.setMoneyRequestTag(transactionID, updatedTagsString); } - }, [policyTagLists, transaction, transactionID, policyTags, canUseViolations]); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [policyTagLists, policyTags, canUseViolations]); /** */