From d86146c8fd98d6d8c85197cd4d32b2a4945971e6 Mon Sep 17 00:00:00 2001 From: pepper Date: Fri, 22 Jan 2021 01:20:19 -0500 Subject: [PATCH] fixed extra / --- src/components/root/common/Functionality/InlineSearchBar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/root/common/Functionality/InlineSearchBar.js b/src/components/root/common/Functionality/InlineSearchBar.js index aedbe89..d20f6fc 100644 --- a/src/components/root/common/Functionality/InlineSearchBar.js +++ b/src/components/root/common/Functionality/InlineSearchBar.js @@ -17,7 +17,7 @@ class InLineSearch extends React.Component { // This is so we can access the state within the function if (e.keyCode === 13) { window.location.href = - process.env.REACT_APP_SITE_URL + '/migrations/' + this.state.data; + process.env.REACT_APP_SITE_URL + 'migrations/' + this.state.data; } }; render() {