Skip to content

Commit 810fad2

Browse files
authored
Update OAuth authorization URL (MixinNetwork#287)
1 parent 15f0ed1 commit 810fad2

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/ui/page/home/tab_collectibles.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,7 @@ class _UnauthorizedWidget extends StatelessWidget {
273273
const SizedBox(height: 6),
274274
TextButton(
275275
onPressed: () {
276-
final uri =
277-
Uri.https('mixin-www.zeromesh.net', 'oauth/authorize', {
276+
final uri = Uri.https('mixin.one', 'oauth/authorize', {
278277
'client_id': Env.clientId,
279278
'scope': authScope,
280279
'response_type': 'code',

lib/ui/widget/dialog/contact_selection_widget.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,7 @@ class _UnauthorizedWidget extends StatelessWidget {
206206
const SizedBox(height: 6),
207207
TextButton(
208208
onPressed: () {
209-
final uri =
210-
Uri.https('mixin-www.zeromesh.net', 'oauth/authorize', {
209+
final uri = Uri.https('mixin.one', 'oauth/authorize', {
211210
'client_id': Env.clientId,
212211
'scope': authScope,
213212
'response_type': 'code',

0 commit comments

Comments
 (0)