Skip to content

Commit

Permalink
fix: oAuthProviders param
Browse files Browse the repository at this point in the history
  • Loading branch information
loks0n committed Jan 12, 2024
1 parent fd25222 commit 3864ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/stores/oauth-providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export type Providers = {

const setProviders = (project: Models.Project): Provider[] => {
return (
project?.providers.map((n) => {
project?.oAuthProviders.map((n) => {
const p = n as Models.Provider & { key: string };
let docs: Provider['docs'];
let icon: Provider['icon'] = p.key.toLowerCase();
Expand Down

0 comments on commit 3864ec6

Please sign in to comment.