File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/plugin-oauth/src Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ export default function makeProvider({
193193
194194 return createAndSaveOAuthTokens (
195195 codeData . client . client_id ,
196- codeData . params . scopes ?? [ ] ,
196+ codeData . confirmation . scopes ?? [ ] ,
197197 codeData . params . resource ,
198198 codeData . confirmation . includeRefreshToken ,
199199 codeData . confirmation . extra ,
@@ -290,10 +290,10 @@ export type OAuthStorageProvider = {
290290 confirmCode : ( code : string , data : CodeConfirmationData ) => Promise < void > ;
291291 getCodeData : ( code : string ) => Promise <
292292 | {
293- client : OAuthClientInformationFull ;
294- params : AuthorizationParams ;
295- confirmation : false | CodeConfirmationData ;
296- }
293+ client : OAuthClientInformationFull ;
294+ params : AuthorizationParams ;
295+ confirmation : false | CodeConfirmationData ;
296+ }
297297 | undefined
298298 | null
299299 > ;
You can’t perform that action at this time.
0 commit comments