feat: fix wording

This commit is contained in:
Nevo David 2025-07-16 21:42:52 +07:00
parent f8f1d5a906
commit fb0a7c7840
2 changed files with 4 additions and 4 deletions

View File

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

View File

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