Skip to content

Commit

Permalink
fix this undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
mustard-mh committed Nov 15, 2023
1 parent 3fcc43c commit f1e653e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class JsonRpcAuthProviderClient implements PromiseClient<typeof AuthProvi
})
: await getGitpodService().server.getOwnAuthProviders();
const response = new ListAuthProvidersResponse({
authProviders: authProviders.map(converter.toAuthProvider),
authProviders: authProviders.map(converter.toAuthProvider.bind(converter)),
});
return response;
}
Expand Down

0 comments on commit f1e653e

Please sign in to comment.