Skip to content

Commit 48e2295

Browse files
committed
small fixes
1 parent c60353a commit 48e2295

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<!-- body bottom scripts -->
3030
<script src="jspm_packages/system.js"></script>
3131
<script src="jspm.config.js"></script>
32-
<script src="vendor.dev.js"></script>
32+
<script src="temp/vendor.dev.js"></script>
3333
<script src="jspm.init.js"></script>
3434
</body>
3535

src/layouts/main-layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export class MainLayout extends React.Component<{}, {}> {
2424
</LayoutMain>
2525

2626
<LayoutFooter>
27-
2016 &copy; Piotr Witek
27+
2016 &copy; Piotr Witek<br />
28+
<a href="https://github.com/piotrwitek/react-redux-typescript-starter-kit">Back to GitHub Repo</a>
2829
</LayoutFooter>
2930
</div>
3031
);

src/utils/logging.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
export function logToConsole(...rest) {
1+
// tslint:disable-next-line
2+
export function logToConsole(...restParams: any[]) {
23
if (!System.production) {
3-
// tslint:disable-next-line
4-
console.log('>>> LOGGER:', ...rest);
4+
console.log('>>> LOGGER:', ...restParams);
55
}
66
}
77

0 commit comments

Comments
 (0)