From 1596bdce53e715759204a4ce0e8f68ddd1c66871 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Mon, 31 May 2021 21:34:14 -0400 Subject: [PATCH] Update README.ja.md --- 7-bank-project/1-template-route/translations/README.ja.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-bank-project/1-template-route/translations/README.ja.md b/7-bank-project/1-template-route/translations/README.ja.md index aed9a830..2812f8cc 100644 --- a/7-bank-project/1-template-route/translations/README.ja.md +++ b/7-bank-project/1-template-route/translations/README.ja.md @@ -212,7 +212,7 @@ JavaScript、特に [`history.pushState`](https://developer.mozilla.org/ja/docs/ ```js function navigate(path) { - window.history.pushState({}, path, window.location.origin + path); + window.history.pushState({}, path, path); updateRoute(); } ```