From 2e93baf0a7d8b9da01974f190b3190bff8dbf5a2 Mon Sep 17 00:00:00 2001 From: Javadkhan Date: Mon, 15 May 2023 07:12:30 +0400 Subject: [PATCH] Added a whitespace before the "successfully" so it should be correct now. --- src/components/Library/Library.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Library/Library.jsx b/src/components/Library/Library.jsx index 547040a..7799fe2 100644 --- a/src/components/Library/Library.jsx +++ b/src/components/Library/Library.jsx @@ -71,7 +71,7 @@ export default function Library() { //This state helps us for two way in input filed const[isAdded,handleIsAdded] = useState(false); const removeBookByName = (row) => { - setRemovedItemName("removed " + row.name + "successfully"); + setRemovedItemName("removed " + row.name + " successfully"); myRows.splice(myRows.indexOf(row), 1); setMyRows([...myRows]);