Quite a neat method. Axios has a way of setting the authorization token once, globally. By using
axios.defaults.headers.common['Content-Type'] = 'application/json';
axios.defaults.headers.common['Authorization'] = `Bearer ${access_token}`;
Check this StackOverflow answer for more info.