Skip to content

Commit

Permalink
enhance(): add auth_nonce to FacebookLoginProps.loginOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
greatSumini committed Apr 29, 2022
1 parent 3741893 commit 3882448
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/types/params.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ export type FacebookLoginProps = Pick<InitParams, 'appId'> & {

initParams?: Omit<InitParams, 'appId'>;

loginOptions?: Pick<LoginOptions, 'auth_type' | 'return_scopes'>;
loginOptions?: Pick<
LoginOptions,
'auth_type' | 'return_scopes' | 'auth_nonce'
>;

dialogParams?: Pick<DialogParams, 'redirect_uri' | 'response_type' | 'state'>;
};

0 comments on commit 3882448

Please sign in to comment.