Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrades dependencies and node version #836

Merged
merged 12 commits into from
Jul 9, 2024
2 changes: 1 addition & 1 deletion containers/beacon/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dynamic Builds
ARG BUILDER_IMAGE=node:16
ARG BUILDER_IMAGE=node:18
ARG FINAL_IMAGE=nginx:stable

# Build stage
Expand Down
2 changes: 1 addition & 1 deletion web/beacon-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"concurrently": "^7.6.0",
"cypress": "^12.3.0",
"cypress": "^13.13.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
Expand Down
1 change: 0 additions & 1 deletion web/beacon-app/src/application/routes/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ const router = createBrowserRouter(
<Route path="dashboard" element={<Home />} />
<Route path="projects">
<Route index element={<ProjectsPage />} />
<Route path=":project-setup" element={<>Project setup</>} />
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The route has been removed since it's not used and it was causing a blank page with Project setup to appear instead of the ProjectDetailPage in dev.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice catch again!

<Route path=":id" element={<ProjectDetailPage />} />
</Route>
<Route
Expand Down
Loading
Loading