From fb0a7c7840a8439f186bcd847c3c22a6e0386d8a Mon Sep 17 00:00:00 2001 From: Nevo David Date: Wed, 16 Jul 2025 21:42:52 +0700 Subject: [PATCH] feat: fix wording --- apps/frontend/src/components/autopost/autopost.tsx | 4 ++-- .../frontend/src/components/settings/signatures.component.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/frontend/src/components/autopost/autopost.tsx b/apps/frontend/src/components/autopost/autopost.tsx index 629ce190..b564a84e 100644 --- a/apps/frontend/src/components/autopost/autopost.tsx +++ b/apps/frontend/src/components/autopost/autopost.tsx @@ -252,8 +252,8 @@ export const AddOrEditWebhook: FC<{ }); toast.show( data?.id - ? 'Webhook updated successfully' - : 'Webhook added successfully', + ? 'Autopost updated successfully' + : 'Autopost added successfully', 'success' ); modal.closeAll(); diff --git a/apps/frontend/src/components/settings/signatures.component.tsx b/apps/frontend/src/components/settings/signatures.component.tsx index e5427265..081163dd 100644 --- a/apps/frontend/src/components/settings/signatures.component.tsx +++ b/apps/frontend/src/components/settings/signatures.component.tsx @@ -143,8 +143,8 @@ const AddOrRemoveSignature: FC<{ }); toast.show( data?.id - ? 'Webhook updated successfully' - : 'Webhook added successfully', + ? 'Signature updated successfully' + : 'Signature added successfully', 'success' ); modal.closeModal(modal.modals[modal.modals.length - 1].id);