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);