here too.
tip: copy the code somwhere to re-use in each session (unless there is a way to attach it to the gpt page on a session start ?)
copy/paste in chrome dev tools / console :
if (!Array.prototype.toSorted) {
Array.prototype.toSorted = function(compareFn) {
compareFn = compareFn || ((a, b) => String(a).localeCompare(b));
const arrayCopy = […this];
return arrayCopy.sort(compareFn);
};
}