Skip to content

Commit

Permalink
#1739 - correct toast msg
Browse files Browse the repository at this point in the history
  • Loading branch information
RChandler234 committed Dec 15, 2023
1 parent 3a5b06a commit 37fe6fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const DeleteWorkPackage: React.FC<DeleteWorkPackageRequestProps> = ({
await mutateAsync(wbsNumber);
handleClose();
history.goBack();
toast.success(`Project #${wbsPipe(wbsNumber)} Deleted Successfully!`);
toast.success(`Work Package #${wbsPipe(wbsNumber)} Deleted Successfully!`);
} catch (e) {
if (e instanceof Error) {
toast.error(e.message);
Expand Down

0 comments on commit 37fe6fa

Please sign in to comment.