Skip to content

Commit 5b60e69

Browse files
committed
dorian hurriance ⛈️storage
1 parent 930bf20 commit 5b60e69

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "misrcon",
33
"productName": "MisRCON",
4-
"version": "3.0.1-rc-7",
4+
"version": "3.0.1-rc-8",
55
"description": "RCON Tool and Map for Miscreated game.",
66
"repository": {
77
"url": "https://github.com/csprance/misrcon.git"

src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const App: React.FunctionComponent<Props> = () => {
1010
<MemoryRouter>
1111
<Layout>
1212
<Switch>
13-
<Route exact path="/" render={() => <Redirect to="/help" />} />
13+
<Route exact path="/" render={() => <Redirect to="/console" />} />
1414
{routes.map((route, idx) => (
1515
<Route key={idx} path={route.path} component={route.component} />
1616
))}

src/redux/notifications/state.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ export const defaultNotification: Notification = {
99
};
1010

1111
export const defaultNotificationsState: NotificationsState = [
12-
defaultNotification,
13-
{...defaultNotification, id: 1, content: 'info'},
14-
{...defaultNotification, id: 2, content: 'success'}
12+
// defaultNotification,
13+
// {...defaultNotification, id: 1, content: 'info'},
14+
// {...defaultNotification, id: 2, content: 'success'}
1515
];
1616

1717
export default defaultNotificationsState;

0 commit comments

Comments
 (0)