From dea0c4287b13078fd85b214e26e71fdf4ff4824b Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Wed, 15 Mar 2017 14:06:43 -0700 Subject: [PATCH] Fix let to const --- browser/main/NoteList/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js index 88f3a3e9..7bb3d4e5 100644 --- a/browser/main/NoteList/index.js +++ b/browser/main/NoteList/index.js @@ -339,7 +339,7 @@ class NoteList extends React.Component { let { router } = this.context let { location } = this.props - let targetIndex = 0 + const targetIndex = 0 router.push({ pathname: location.pathname,