We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b11b06 commit eb7bb13Copy full SHA for eb7bb13
app/src/lib/appAuth.ts
@@ -33,8 +33,8 @@ export const appAuth = new SvelteKitAuth({
33
apiKey: import.meta.env.VITE_REDDIT_API_KEY,
34
apiSecret: import.meta.env.VITE_REDDIT_API_SECRET,
35
profile(profile) {
36
- profile = RedditOAuth2Provider.profileHandler(profile);
37
- return { ...profile, provider: "reddit" };
+ const slim = RedditOAuth2Provider.profileHandler(profile);
+ return { ...slim, provider: "reddit" };
38
},
39
}),
40
],
0 commit comments