Skip to content

Commit

Permalink
Merge pull request #719 from appwrite/fix-oauth-settings-page
Browse files Browse the repository at this point in the history
fix: oauth settings page
  • Loading branch information
TorstenDittmann authored Jan 12, 2024
2 parents fd25222 + 3864ec6 commit 03913d0
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 03913d0

Please sign in to comment.