Skip to content

Commit

Permalink
fix: OAuth redirect url
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-martinez committed Aug 22, 2023
1 parent 4cabe47 commit 747d874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class Store extends StatelessWidget {
ChangeNotifierProvider<OAuthModel>(
create: (context) => OAuthModel(
Config.instance.oauthClientId,
const String.fromEnvironment("OAUTH_REDIRECT_URL", defaultValue: "http://localhost:10000/redirect.html"),
Config.instance.oauthRedirectUrl,
scopes: ['resources', 'manage:account', 'store'],
),
),
Expand Down

0 comments on commit 747d874

Please sign in to comment.