Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 7ddc3a7

Browse files
authored
Merge pull request #1992 from blockstack/master
Deploy v0.36.5 to browser.blockstack.org
2 parents 7ef93a1 + d535ede commit 7ddc3a7

3 files changed

Lines changed: 5 additions & 8 deletions

File tree

app/js/profiles/DefaultProfilePage.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ import { defaultAvatarImage } from '@components/ui/common/constants'
3535
const logger = log4js.getLogger(__filename)
3636

3737
const accountTypes = [
38-
'twitter',
39-
'facebook',
40-
'github',
4138
'bitcoin',
42-
'instagram'
39+
'facebook',
40+
'instagram',
41+
'twitter'
4342
]
4443

4544
const hiddenAccountTypes = ['linkedIn', 'instagram']
@@ -244,8 +243,6 @@ export class DefaultProfilePage extends Component {
244243
verificationUrl = `https://twitter.com/intent/tweet?text=${verificationText}`
245244
} else if (service === 'facebook') {
246245
verificationUrl = `https://www.facebook.com/dialog/feed?app_id=258121411364320&link=${url}`
247-
} else if (service === 'github') {
248-
verificationUrl = 'https://gist.github.com/'
249246
} else if (service === 'instagram') {
250247
// no op
251248
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "blockstack-browser",
33
"description": "The Blockstack browser",
4-
"version": "0.36.4",
4+
"version": "0.36.5",
55
"author": "Blockstack PBC <admin@blockstack.com>",
66
"dependencies": {
77
"bigi": "^1.4.2",

test/profiles/DefaultProfilePage.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function setup(accounts = []) {
3838
}
3939

4040
function alphabeticalOrdered(accounts) {
41-
return accounts.first().props().service <
41+
return accounts.first().props().service <=
4242
accounts.last().props().service
4343
}
4444

0 commit comments

Comments
 (0)