👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2020-01-07 23:23:43 -06:00
parent 6e44f51a22
commit dfc3cb962c

View file

@ -261,7 +261,7 @@ export const restApi = Vue.extend({
OAuth2Callback: (code: string, state: string): Promise<string> => {
const sendData = {
'code': code,
'state': state
'state': state,
};
return self.restApi().makeRestApiRequest('POST', `/oauth2-credential/callback`, sendData);