Remove "post published" popup

This seems to have been fairly unpopular with Hometown users, and
I know a few instances have removed it already. Might as well
bring the patch to remove it into Hometown itself.

refs 9438189739
This commit is contained in:
Misty De Meo 2024-09-23 16:30:59 -07:00
parent 441dca176d
commit 1a2d1b2c48
No known key found for this signature in database
GPG Key ID: 76CF846A2F674B2C
1 changed files with 0 additions and 7 deletions

View File

@ -245,13 +245,6 @@ export function submitCompose(routerHistory) {
insertIfOnline('public');
insertIfOnline(`account:${response.data.account.id}`);
}
dispatch(showAlert({
message: statusId === null ? messages.published : messages.saved,
action: messages.open,
dismissAfter: 10000,
onClick: () => routerHistory.push(`/@${response.data.account.username}/${response.data.id}`),
}));
}).catch(function (error) {
dispatch(submitComposeFail(error));
});