1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Change url development to production

This commit is contained in:
asmsuechan
2017-09-20 10:31:50 +09:00
parent e313b5e59d
commit 964b7b62de

View File

@@ -19,7 +19,8 @@ class RealtimeNotification extends React.Component {
}
fetchNotifications () {
fetch('https://raw.githubusercontent.com/asmsuechan/notification/master/notification.json')
const notificationsUrl = 'https://raw.githubusercontent.com/BoostIO/notification/master/notification.json'
fetch(notificationsUrl)
.then(response => {
return response.json()
})