Skip to content

Commit 32d0dc2

Browse files
authored
Merge pull request #157 from canonical/WD-19149
[WD-19149] Fixed redirection on removing a NEW webpage
2 parents 1e9ac9f + 2b945ca commit 32d0dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/client/components/RequestTaskModal/RequestTaskModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const RequestTaskModal = ({
6262
setIsLoading(false);
6363
onClose();
6464
if (webpage.status === PageStatus.NEW) {
65-
window.location.href = "/";
65+
window.location.href = "/app";
6666
} else {
6767
window.location.reload();
6868
}

0 commit comments

Comments
 (0)