Skip to content

Commit

Permalink
chore: replace blues.io with blues.com (#126)
Browse files Browse the repository at this point in the history
* chore: replace blues.io with blues.com

* and nix a "Wireless" too
  • Loading branch information
CarltonHenderson authored Dec 8, 2023
1 parent 1457b1b commit 23e7656
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 🐦 Sparrow Reference Web App

An example web application to configure and view sensor data from Blues Wireless Sparrow devices.
An example web application to configure and view sensor data from Blues Sparrow devices.

- [🐦 Sparrow Reference Web App](#-sparrow-reference-web-app)
- [Development Overview](#development-overview)
Expand All @@ -16,7 +16,8 @@ An example web application to configure and view sensor data from Blues Wireless
- [Create a tunnel to a server running the reference app](#create-a-tunnel-to-a-server-running-the-reference-app)
- [Localtunnel](#localtunnel)
- [Ngrok](#ngrok)
- [Set up a Notehub route to your tunnel](#set-up-a-notehub-route-to-your-tunnel)
- [Set up a Notehub route and dashboard URL to your tunnel](#set-up-a-notehub-route-and-dashboard-url-to-your-tunnel)
- [Set up a Project Dashboard URL to your tunnel](#set-up-a-project-dashboard-url-to-your-tunnel)
- [Database](#database)
- [Create the database](#create-the-database)
- [Custom PostgreSQL Server](#custom-postgresql-server)
Expand Down Expand Up @@ -548,4 +549,4 @@ yarn cypress:open

If you run into any issues using this repo, feel free to create an
[issue](issues/new) on this repository, or to reach out on our developer
[forum](https://discuss.blues.io/).
[forum](https://discuss.blues.com/).
4 changes: 2 additions & 2 deletions cypress/integration/homepage.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ describe("Sparrow Application", () => {
// Check footer links are correct
cy.get('[data-testid="notecard-link"]')
.should("have.attr", "href")
.and("include", "https://blues.io/products");
.and("include", "https://blues.com/products");
cy.get('[data-testid="blues-link"]')
.should("have.attr", "href")
.and("include", "https://blues.io");
.and("include", "https://blues.com");
});

it("should be able to click on a gateway UID and see the details of that gateway and its related nodes", function () {
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const FooterComponent = () => {
<span>
<a
target="_blank"
href="https://blues.io/products"
href="https://blues.com/products"
rel="noreferrer"
data-testid="notecard-link"
>
Expand All @@ -34,7 +34,7 @@ const FooterComponent = () => {
<span>
<a
target="_blank"
href="https://blues.io"
href="https://blues.com"
rel="noreferrer"
data-testid="blues-link"
>
Expand Down
2 changes: 1 addition & 1 deletion src/constants/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const ERROR_MESSAGE = {
GATEWAY_NOT_FOUND:
"We were unable to locate any gateways. Ensure your environment variables are configured correctly.",
INTERNAL_ERROR:
"An internal error occurred. If this problem persists, contact <a href='https://discuss.blues.io' target='_blank' rel='noreferrer'>Blues Support</a>.",
"An internal error occurred. If this problem persists, contact <a href='https://discuss.blues.com' target='_blank' rel='noreferrer'>Blues Support</a>.",
UNAUTHORIZED:
"Authentication failed. Please ensure you have a valid HUB_AUTH_TOKEN environment variable.",
NODES_NOT_FOUND:
Expand Down

0 comments on commit 23e7656

Please sign in to comment.