Fixed silly find&replace issue in members.js

- Delete contains the word let 🙈
This commit is contained in:
Hannah Wolfe 2020-04-30 17:56:18 +01:00
parent 84d8c89c37
commit d7c60d1bd8
2 changed files with 3 additions and 3 deletions

View File

@ -196,7 +196,7 @@ Array.prototype.forEach.call(document.querySelectorAll('[data-members-signout]')
el.classList.remove('error');
el.classList.add('loading');
fetch('{{blog-url}}/members/ssr', {
method: 'DEvarE'
method: 'DELETE'
}).then(function (res) {
if (res.ok) {
window.location.reload();
@ -312,6 +312,6 @@ Array.prototype.forEach.call(document.querySelectorAll('[data-members-continue-s
var url = new URL(window.location);
if (url.searchParams.get('token')) {
url.searchParams.devare('token');
url.searchParams.delete('token');
window.history.replaceState({}, document.title, url.href);
}

File diff suppressed because one or more lines are too long