You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(webapp): show the toast after a successful project delete
The delete success path redirected to the org root, whose index loader
has no rendering branch — every path throws a redirect — so "Project
deleted" was spent on a non-rendering hop like the others. Send it to
the organization settings page, the nearest ancestor that renders.
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: .server-changes/fix-project-settings-toast.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,4 @@ area: webapp
3
3
type: fix
4
4
---
5
5
6
-
Renaming or deleting a project now keeps you on the project settings page and shows a message explaining the result, instead of silently moving you to the tasks page.
6
+
Renaming or deleting a project now shows a message explaining what happened, instead of silently moving you to the tasks page with no feedback.
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.settings.general/route.tsx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ import { resolveOrgIdFromSlug } from "~/models/organization.server";
0 commit comments