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