Skip to content

Commit 932e7e5

Browse files
committed
Use GH_NEW_ISSUE_URL in ContactsDetailView
1 parent 2eb9951 commit 932e7e5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

source/views/contacts/contact-detail.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import {tracker} from '../../analytics'
1010
import {Button} from '../components/button'
1111
import openUrl from '../components/open-url'
1212
import type {ContactType} from './types'
13-
14-
const AAO_URL = 'https://github.com/StoDevX/AAO-React-Native/issues/new'
13+
import {GH_NEW_ISSUE_URL} from '../../globals'
1514

1615
const Title = glamorous.text({
1716
fontSize: 36,
@@ -93,7 +92,7 @@ export class ContactsDetailView extends React.PureComponent<Props> {
9392
<Button onPress={this.onPress} title={contact.buttonText} />
9493

9594
<ListFooter
96-
href={AAO_URL}
95+
href={GH_NEW_ISSUE_URL}
9796
title="Collected by the humans of All About Olaf"
9897
/>
9998
</Container>

0 commit comments

Comments
 (0)