diff --git a/samples/BikeSharingApp/BikeSharingWeb/components/Header.js b/samples/BikeSharingApp/BikeSharingWeb/components/Header.js
index 47da38d86..2598b65c4 100644
--- a/samples/BikeSharingApp/BikeSharingWeb/components/Header.js
+++ b/samples/BikeSharingApp/BikeSharingWeb/components/Header.js
@@ -1,62 +1,64 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
-import Link from 'next/link'
-
-const Header = (props) => (
-
-
-
-
-
-
-
-
- {props.userName != null &&
-
- Hi {props.userName} | Sign out
-
- }
-
-
+import Link from "next/link";
+
+const Header = props => (
+
+
+
+
+
+
+
+
+ {props.userName != null && (
+
+
+ Hi {props.userName} | Sign out in new ver
+
+
+ )}
-)
+
+
+);
-export default Header
\ No newline at end of file
+export default Header;
diff --git a/samples/BikeSharingApp/Bikes/server.js b/samples/BikeSharingApp/Bikes/server.js
index 5a418c923..b1f1e9b51 100644
--- a/samples/BikeSharingApp/Bikes/server.js
+++ b/samples/BikeSharingApp/Bikes/server.js
@@ -230,7 +230,6 @@ app.get('/api/bikes/:bikeId', function(req, res) {
var theBike = result;
// Hard code image url *FIX ME*
- theBike.imageUrl = "/static/logo.svg";
theBike.id = theBike._id;
delete theBike._id;