Skip to content

Commit

Permalink
Missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Zelinsky committed Jul 19, 2016
1 parent d6d07ba commit d46d447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class Config {
display: 'popup',
oauthType: '2.0',
popupOptions: { width: 452, height: 633 },
state: () => { encodeURIComponent(Math.random().toString(36).substr(2)); }
state: () => { return encodeURIComponent(Math.random().toString(36).substr(2)); }
},
github: {
name: 'github',
Expand Down

0 comments on commit d46d447

Please sign in to comment.