mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
💬 🐛 Fix regression add on move, improved texts
This commit is contained in:
@ -19,9 +19,9 @@ export const createOrUpdateField = async (
|
||||
return res.json();
|
||||
}),
|
||||
{
|
||||
loading: "Adding...",
|
||||
success: "Added.",
|
||||
error: "Could not add :/",
|
||||
loading: field?.id !== -1 ? "Saving..." : "Adding...",
|
||||
success: field?.id !== -1 ? "Saved." : "Added.",
|
||||
error: field?.id !== -1 ? "Could not save :/" : "Could not add :/",
|
||||
},
|
||||
{
|
||||
id: "saving field",
|
||||
|
||||
Reference in New Issue
Block a user