From 5b60e69a970b9ad384193374347d01beae56cb85 Mon Sep 17 00:00:00 2001 From: Chris Sprance Date: Wed, 4 Sep 2019 19:02:48 -0400 Subject: [PATCH] =?UTF-8?q?dorian=20hurriance=20=E2=9B=88=EF=B8=8Fstorage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/app.tsx | 2 +- src/redux/notifications/state.ts | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 1b3ab1c4..7b2ffb62 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "misrcon", "productName": "MisRCON", - "version": "3.0.1-rc-7", + "version": "3.0.1-rc-8", "description": "RCON Tool and Map for Miscreated game.", "repository": { "url": "https://github.com/csprance/misrcon.git" diff --git a/src/app.tsx b/src/app.tsx index b677045f..50f66bd3 100755 --- a/src/app.tsx +++ b/src/app.tsx @@ -10,7 +10,7 @@ export const App: React.FunctionComponent = () => { - } /> + } /> {routes.map((route, idx) => ( ))} diff --git a/src/redux/notifications/state.ts b/src/redux/notifications/state.ts index 6e16c42e..8c8d6733 100755 --- a/src/redux/notifications/state.ts +++ b/src/redux/notifications/state.ts @@ -9,9 +9,9 @@ export const defaultNotification: Notification = { }; export const defaultNotificationsState: NotificationsState = [ - defaultNotification, - {...defaultNotification, id: 1, content: 'info'}, - {...defaultNotification, id: 2, content: 'success'} + // defaultNotification, + // {...defaultNotification, id: 1, content: 'info'}, + // {...defaultNotification, id: 2, content: 'success'} ]; export default defaultNotificationsState;