Skip to content

Commit

Permalink
dorian hurriance ⛈️storage
Browse files Browse the repository at this point in the history
  • Loading branch information
csprance committed Sep 4, 2019
1 parent 930bf20 commit 5b60e69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion src/app.tsx
Expand Up @@ -10,7 +10,7 @@ export const App: React.FunctionComponent<Props> = () => {
<MemoryRouter>
<Layout>
<Switch>
<Route exact path="/" render={() => <Redirect to="/help" />} />
<Route exact path="/" render={() => <Redirect to="/console" />} />
{routes.map((route, idx) => (
<Route key={idx} path={route.path} component={route.component} />
))}
Expand Down
6 changes: 3 additions & 3 deletions src/redux/notifications/state.ts
Expand Up @@ -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;

0 comments on commit 5b60e69

Please sign in to comment.