Use American English spelling throughout

This commit is contained in:
2026-09-15 11:45:58 -07:00
parent 6ba89696ee
commit d1731efdb9
169 changed files with 786 additions and 795 deletions
+2 -2
View File
@@ -177,7 +177,7 @@ export const useScheduled = create<ScheduledState>((set, get) => ({
* Nothing moves a message out of Scheduled when its hold expires -- the
* server sends it and updates the submission, but the message stays where we
* filed it. So on the way into the folder, settle up: what went out belongs
* in Sent, what was cancelled elsewhere belongs back in Drafts.
* in Sent, what was canceled elsewhere belongs back in Drafts.
*/
async reconcile() {
const mail = useMail.getState();
@@ -215,7 +215,7 @@ export const useScheduled = create<ScheduledState>((set, get) => ({
pending[emailId] = s;
continue;
}
// Cancelled goes back to Drafts; sent (or a submission the server no
// Canceled goes back to Drafts; sent (or a submission the server no
// longer knows about) goes to Sent, which is where it actually is.
const toDrafts = s?.undoStatus === "canceled";
const dest = toDrafts ? draftsId : sentId;