From 964b7b62de4e9b715d2b18ece27be58b7d3b21e5 Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Wed, 20 Sep 2017 10:31:50 +0900 Subject: [PATCH] Change url development to production --- browser/components/RealtimeNotification.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browser/components/RealtimeNotification.js b/browser/components/RealtimeNotification.js index 3d748046..90316be5 100644 --- a/browser/components/RealtimeNotification.js +++ b/browser/components/RealtimeNotification.js @@ -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() })