Skip to content

Commit fb4b9ed

Browse files
authored
fix: fix wording in the toast (#5034)
## Description 1. What is this PR about (link the issue and add a short description) ## Steps for reproduction 1. click button 2. expect xyz ## Code Review - [ ] hi @kof, I need you to do - conceptual review (architecture, feature-correctness) - detailed review (read every line) - test it on preview ## Before requesting a review - [ ] made a self-review - [ ] added inline comments where things may be not obvious (the "why", not "what") ## Before merging - [ ] tested locally and on preview environment (preview dev login: 0000) - [ ] updated [test cases](https://github.com/webstudio-is/webstudio/blob/main/apps/builder/docs/test-cases.md) document - [ ] added tests - [ ] if any new env variables are added, added them to `.env` file
1 parent 5637e71 commit fb4b9ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/builder/app/builder/features/topbar/publish.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -384,16 +384,16 @@ const Publish = ({
384384
if (status === "PUBLISHED") {
385385
toast.success(
386386
<>
387-
The project has been successfully published. The project is
388-
successfully published.{" "}
387+
The project has been successfully published.{" "}
389388
{hasProPlan === false && (
390389
<div>
391390
On the free plan, you have {timesLeft} out of{" "}
392391
{maxPublishesAllowedPerUser} daily publications remaining. The
393392
counter resets tomorrow.
394393
</div>
395394
)}
396-
</>
395+
</>,
396+
{ duration: 10000 }
397397
);
398398
break;
399399
}

0 commit comments

Comments
 (0)