diff --git a/app/mm-redux/client/client4.ts b/app/mm-redux/client/client4.ts index 9e3272257..81049c8fa 100644 --- a/app/mm-redux/client/client4.ts +++ b/app/mm-redux/client/client4.ts @@ -549,7 +549,11 @@ export default class Client4 { const {data} = await this.doFetchWithResponse( `${this.getUsersRoute()}/login`, - {method: 'post', body: JSON.stringify(body)}, + { + method: 'post', + body: JSON.stringify(body), + headers: {'Cache-Control': 'no-store'}, + }, ); return data;